久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放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)站

      css陰影怎么做

      在css中,可以使用box-shadow屬性來設(shè)置陰影,語法“box-shadow:X軸 Y軸 大小 顏色 inset”;其中“inset”值是可選的,加上時(shí)該陰影表示內(nèi)陰影,不加時(shí)該陰影表示外陰影。

      css陰影怎么做

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

      box-shadow為css陰影設(shè)置,其中分為外陰影和內(nèi)陰影,一般默認(rèn)為外陰影

      1. 外陰影的屬性為:X軸 Y軸 px color
        屬性說明(順序依次對(duì)應(yīng)): 陰影的X軸(可以使用負(fù)值) 陰影的Y軸(可以使用負(fù)值) 陰影模糊值(大?。?陰影的顏色
      <style>  .one{   margin: auto;   width: 200px;   height: 200px;   border: 1px solid #ffa;   box-shadow: 0 0 20px #000;  } </style> <body> <p class="one">  </p> </body>

      其結(jié)果為:

      css陰影怎么做

      1. 內(nèi)陰影的屬性為:X軸 Y軸 px color inset
        屬性說明(順序依次對(duì)應(yīng)): 陰影的X軸(可以使用負(fù)值) 陰影的Y軸(可以使用負(fù)值) 陰影模糊值(大?。?陰影的顏色 inset
      <style>  .one{   margin: auto;   width: 200px;   height: 200px;   border: 1px solid #ffa;   box-shadow: 0 0 20px #000 inset;  } </style> <body> <p class="one">  </p> </body>

      其結(jié)果為:

      css陰影怎么做

      若配合css3動(dòng)畫效果,會(huì)更加神奇

      推薦學(xué)習(xí):css視頻教程

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