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

      css怎么改變圓的大小

      在css中,可以利用width和height屬性來(lái)改變圓的大小,這兩個(gè)屬性的值必須是相等的,表示圓形元素的直徑,只需要給圓形元素添加“width:改變后的直徑,height:改變后的直徑;”樣式即可。

      css怎么改變圓的大小

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

      css怎么改變圓的大小

      我們可以通過(guò)改變圓形的直徑來(lái)改變圓的大小,而在css中,圓的直徑由width和height屬性控制,示例如下:

      <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>css</title> <style> .ellipse{ width: 200px; height: 200px; background-color: red; border-radius:100%; -o-border-radius:100%; -ms-border-radius:100%; -moz-border-radius:100%; -webkit-border-radius:100%; } .ellipse1{ width: 300px; height: 300px; background-color: red; border-radius:100%; -o-border-radius:100%; -ms-border-radius:100%; -moz-border-radius:100%; -webkit-border-radius:100%; } </style> </head> <body> <div class="ellipse"></div> <div class="ellipse1"></div> </body> </html>

      輸出結(jié)果:

      css怎么改變圓的大小

      (學(xué)習(xí)視頻分享:css視頻教程)

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