10
09/2014
css + 选择器例子有趣玩法
代码如下:
<style>
input:focus + label {color:#c00;font-weight: 700;}
</style>
<div style="direction:rtl">
<input type="text" id="username" >
<label for="username">:Username</label>
</div>
代码如下:
<style>
input:focus + label {color:#c00;font-weight: 700;}
</style>
<div style="direction:rtl">
<input type="text" id="username" >
<label for="username">:Username</label>
</div>