寫入法:1、為邊框加上「border-radius:圓角值;」樣式統一設定圓角大小;2、新增「border-top-left-radius:圓角值;」、「border -top-right-radius:圓角值;」等樣式分別設定四角圓角大小。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
css邊框變圓角邊框的寫入法
圓角邊框(border-radius)的基本用法:border-radius 屬性是一個簡寫屬性,用於設定四個圓角的屬性。
圓角邊框的最基本用法就是設定四個相同弧度的圓角
border-top-left-radius:30px; //左上角 border-top-right-radius:30px; //右上角 border-bottom-left-radius:30px; //右下角 border-bottom-right-radius:30px; //左下角
如果這四個弧度的圓角相同,可以寫成:
border-radius:30px;
例子:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style> .div1{ margin:0 auto; background: darkcyan; width:200px; height:200px; border:2px solid darkslategray; border-radius:30px; text-align: center; line-height: 200px; } </style> </head> <body> <div class="div1">圆角边框</div> </body> </html>
輸出結果:
更多程式相關知識,請造訪:程式設計影片! !
以上是css邊框變圓角邊框怎麼寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!