久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放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. 站長資訊網
      最全最豐富的資訊網站

      css怎么設置邊框內顏色

      css中可使用background-color屬性改變邊框內顏色,只需要給input元素設置“background-color:顏色值”樣式即可。background-color屬性設置元素的背景顏色,值為顏色名稱、十六進制值和rgb代碼。

      css怎么設置邊框內顏色

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

      創(chuàng)建html文件,設置頁面背景顏色。創(chuàng)建h1標簽和內容,創(chuàng)建p標簽和內容,為h1元素設置邊框和邊框背景顏色。為p元素設置邊框和邊框背景顏色。

      <!DOCTYPE html>  <html>  <head>  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <title>document</title>  <style> h1{     border: 1px solid red;     background-color: rgb(113, 255, 201); } p{     border: 1px solid #fff;     background-color: rgb(255, 182, 113); } </style> </head>  <body bgcolor="#ccc">     <h1>這是一個標題</h1>     <p>這是一個段落,這是一句話。</p> </body>  </html>

      效果如下:

      css怎么設置邊框內顏色

      推薦學習:css視頻教程

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