dreamweaver 如何添加下划线

时间:2022-07-28 09:10:52
我想楼主所说的带下划线的空白处在页面中是个能填写数字或文字的输入框吧?否则他就是个摆设了。 如果是输入框的话,可以通过css定义来修改它的样式。 直接使用style方式定义: <input type="text" name="textfield" style="border:0;border-bottom:1px solid #000;width:50px;"></input> 上面的方法仅适用于某一个输入框,如果输入框有很多,可以定义一个class。 在源代码中<head></head>中加入 <style type="text/css"> <!-- .underline {border:0;border-bottom:1px solid #000;width:50px;} --> </style> 然后在html中的input处引用它: <input type="text" name="textfield" class="underline"></input> css中的宽度width:50px;和颜色#000可以根据自己的需求调节。