久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      html怎么去掉input邊框

      去掉input邊框的方法:1、使用style屬性設(shè)置“border: 0;”樣式;2、使用style屬性設(shè)置“border-style: none;”樣式;3、使用style屬性設(shè)置“border: transparent;”樣式。

      html怎么去掉input邊框

      本教程操作環(huán)境:windows7系統(tǒng)、CSS3&&HTML5版、Dell G3電腦。

      這里有一個HTML文檔,有兩個input輸入框

      <!doctype html> <html>  <head>   <meta charset="UTF-8">   <style type="text/css">   input{   background-color: #FFC0CB;   }   </style>  </head>  <body> <input type="text" /><br /> <input type="text" />  </body> </html>

      html怎么去掉input邊框

      可以看出input有邊框,那么如果要想去除input的邊框,要怎么做?下面介紹幾種方法。

      方法1:在input元素中使用style屬性設(shè)置border: 0;樣式

      <input type="text" /><br /> <input type="text" style="border: 0;" />

      html怎么去掉input邊框

      方法2:在input元素中使用style屬性設(shè)置border-style: none;樣式

      <input type="text" /><br /> <input type="text" style="border-style: none;" />

      html怎么去掉input邊框

      方法3:在input元素中使用style屬性設(shè)置border: transparent;樣式

      <input type="text" /><br /> <input type="text" style="border: transparent;" />

      html怎么去掉input邊框

      推薦教程:《html視頻教程》

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號