首頁 >web前端 >css教學 >css如何設定圓角邊框

css如何設定圓角邊框

coldplay.xixi
coldplay.xixi原創
2021-04-29 15:50:4020079瀏覽

css設定圓角邊框的方法是使用圓角邊框【border-radius】實現,如果這四個弧度的圓角相同,可以寫成【border-radius:30px;】。

css如何設定圓角邊框

本教學操作環境: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視頻教程

以上是css如何設定圓角邊框的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn