<input style="border: 0px; border-bottom: 1px solid #000000">

解决方案 »

  1.   

    为了不让别人看到你的代码,最好把他在css中加入
    然后再用class调用!
      

  2.   

    多用Dreamweaver 里面的CSS编辑功能很强的
      

  3.   

    使用CSS样式表.定义左,右,上的border-bottom: 等于0px,下面的为1px.就好了啊
      

  4.   

    <style type="text/css">
    <!--
    .inputbox {  border-style: groove; border-top-width: 0px; border-right-width: 0px; border-bottom-width: thin; border-left-width: 0px}
    -->
    </style>input type="text" name="user" size="12" class="inputbox">
      

  5.   

    <input type="text" name="text" class="inputclass"
    <style>
    {
    border-top-width:1px;border-top-color:#000000;border-top-tyle:solid;
    border-left-width:1px;border-left-color:#000000;border-left-tyle:solid;
    border-right-width:1px;border-right-color:#000000;border-right-style:solid;
    border-bottom-width:1px;border-bottom-color:#000000;border-bottom-style:solid;
    }
    将不想显示的线的width设为0即可。
      

  6.   

    很简单,只要设置style的属性就可以了。。
    <input type = text style = "border-left-width:0 px ; border-top-width: 0 px ;border-right-width: 0 px ; border-bottom-width: 2 px ">
      

  7.   

    style="border: 0px; border-bottom: 1px solid #000000"
      

  8.   

    INPUT
    {
        BORDER-BOTTOM-WIDTH: 1px solid #000000"
        BORDER-LEFT-WIDTH: 0px;
        BORDER-RIGHT-WIDTH: 0px;
        BORDER-TOP-WIDTH: 0px;
    }