css設定圓角邊框的方法是使用圓角邊框【border-radius】實現,如果這四個弧度的圓角相同,可以寫成【border-radius:30px;】。
本教學操作環境:windows7系統、css3版,DELL G3電腦。
css設定圓角邊框的方法:
圓角邊框(border-radius)的基本用法:
圓角邊框的最基本用法就是設定四個相同弧度的圓角
boder-top-left-radius:30px; //左上角 boder-top-right-radius:30px; //右上角 boder-bottom-left-radius:30px; //右下角 boder-bottom-right-radius:30px; //左下角
如果這四個弧度的圓角相同,可以寫成:
border-radius:30px;
css設定圓角邊框:
css部分:
.div1{ margin:0 auto; background: darkcyan; width:200px; height:200px; border:2px solid darkslategray; border-radius:30px; text-align: center; line-height: 200px; }
html部分:
<div class="div1">圆角边框</div>
效果如圖:
相關教學推薦:CSS視頻教程
以上是css如何設定圓角邊框的詳細內容。更多資訊請關注PHP中文網其他相關文章!