您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關css設置圓角的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
在css中,可以使用“border-radius”屬性為div元素添加圓角邊框,設置圓角效果。該屬性按照左上角,右上角,右下角,左下角的順序設置圓角值,四個值相同時可省略其余三個值。
方法1:
圓角邊框(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部分:
.div1{ margin:0 auto; background: darkcyan; width:200px; height:200px; border:2px solid darkslategray; border-radius:30px; text-align: center; line-height: 200px; }
效果如圖:
方法2:
圓角邊框也可以使用百分比作為單位,比如:將一個正方形的圓角邊框設置為50%,那么就會形成一個圓,不過使用百分比與像素并不能等效。
注意:百分比大于50%后,形狀就不會再變化了,圓角的半徑不能超過寬/高的一半
例子:
css部分:
.box1{ width:200px; height:200px; margin: 30px auto; border: 2px solid #e4007e; text-align: center; line-height: 200px; font-weight: bold; font-size: 24px; background: burlywood; border-radius: 50%;//圓角百分比 }
效果如圖:
方法3:
既然使用圓角邊框可以繪制出一個圓,同樣也可以繪制出一個橢圓。
例子:
css部分:
.box2{ width:200px; height:300px; margin: 30px auto; border: 2px solid #e4007e; text-align: center; line-height: 200px; font-weight: bold; font-size: 24px; background: burlywood; border-radius: 100px/150px; }
效果如圖:
方法4:
設置不同弧度的圓角
例子:
css部分:
#box4{ width:500px; position: relative; margin:30px auto; } .div4,.div5,.div6,.div7{ width:200px; height:200px; text-align: center; color:seagreen; font-size: 26px; line-height: 200px; background: yellowgreen; border:2px solid darkslategray; float:left; margin:20px; } .div4{border-top-left-radius: 40px;} .div5{border-top-right-radius: 20px;} .div6{border-bottom-left-radius: 30px;} .div7{border-bottom-right-radius: 10px;}
效果如圖:
注意事項
百分比大于50%后,形狀就不會再變化了,圓角的半徑不能超過寬/高的一半。
關于“css設置圓角的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。