我如何隐藏'标签' (当使用css时)框中有文字。
[image]正如您所看到的,当文本中包含文字时,它仍会显示标签。
HTML
<div class="field-wrap">
<label>example</label>
<input type="text" name="example"/>
</div>
<div class="field-wrap">
<label>example2</label>
<input type="text" name="example2"/>
</div>
答案 0 :(得分:2)
使用占位符。
<input type="text" placeholder="Enter Name" />
答案 1 :(得分:0)
我认为你不能只用css来做,你需要javascript或jquery才能做到这一点。而不是那样,使用占位符,如我之前所建议的那样。