这种样式在有些场合是非常必要的,象以前做试卷的填空题一样,需要填写的文本框只有下边一条横线。这种实现的方法很简单。
input { border:0; border-bottom:1px solid #ccc;}
看看上边的CSS代码,只需要将底部的边框设置为1,并设置线型和颜色,其它的边框为0就可实现
<style>
input { border:0; border-bottom:1px solid #ccc;}
</style>
<p>姓名:
<input type="text" name="textfield" id="textfield" />
</p>
<p>年级:
<input type="text" name="textfield" id="textfield" />
</p>
文章出处:标准之路(http://www.aa25.cn/code/474.shtml)
本文介绍了一种使用CSS实现纯下划线样式的文本输入框的方法,通过设置特定的边框属性,可以使得输入框仅有底部边框显示,适用于需要简洁风格的表单设计。
1445

被折叠的 条评论
为什么被折叠?



