zoukankan      html  css  js  c++  java
  • 仅显示input下边框

    直接上代码,感兴趣的可以亲测:

    <!DOCTYPE html>
    <html>
    
        <head>
        <meta charset="UTF-8">
        <title>仅显示INPUT标签的下边框</title>
        </head>
        
        <body>
        
            <input>默认效果<br><hr>
            
            <input style="border-left-0px">设置左边框宽度为0<br><hr>
            
            <input style="border-top-0px">设置上边框宽度为0<br><hr>
            
            <input style="border-right-0px">设置右边框宽度为0<br><hr>
            
            <input style="border-bottom-0px">设置下边框宽度为0<br><hr>
            
            <input style="border-left-0px;border-top-0px;border-right-0px;border-bottom-0">设置四边边框的宽度全为0<br><hr>
            
            <input style="border-left-0px;border-top-0px;border-right-0px;border-bottom-color:black">设置左/上/右边框的宽度为0,下边框的颜色为黑色,这是我们想要的效果<br><hr>
        
        </body>
    </html>
  • 相关阅读:
    Steady Cow Assignment POJ
    二分图多重匹配问题
    Tour HDU
    奔小康赚大钱 HDU
    Strategic Game HDU
    Antenna Placement POJ
    Oil Skimming HDU
    Rain on your Parade HDU
    假如,
    这样也可以,insert,,
  • 原文地址:https://www.cnblogs.com/Dark-fire-liehuo/p/10514906.html
Copyright © 2011-2022 走看看