加了,按钮里的文字还没有下划线
我按钮的代码是                       
<INPUT type="submit" height=27 width=174 value=download border=0 name=submit valign="bottom" class="buttonface">
我想让download加下划线,请问应该加在哪里

解决方案 »

  1.   

    <INPUT style="text-decoration:underline" type="submit" height=27 width=174 value=download border=0 name=submit valign="bottom" class="buttonface">
      

  2.   


    css
    ----------
    .buttonface{text-decoration:underline}
      

  3.   

    text-decoration:underline这个对非超链接的文字没有效果啊
      

  4.   

    试试这个。看着需要修改。
    <style type="text/css">
    .pn{cursor:pointer;}
    .pn a{text-decoration:underline;}
    .pn a:hover{text-decoration:underline;}
    </style>
    <button class="pn" value="true" id="commentsubmit_btn" name="commentsubmit_btn" type="submit"><a href="javascript:;">downloads</a></button>
      

  5.   

    我在chrome上试了下有下划线啊
    <INPUT   style= "text-decoration:underline; "   type= "submit"   height=27   width=174   value='download'   name=submit     class= "buttonface" />
      

  6.   

    建议你 去从头学下css吧-。-