首頁  >  文章  >  web前端  >  css border-radius屬性怎麼用

css border-radius屬性怎麼用

藏色散人
藏色散人原創
2019-05-29 13:24:032814瀏覽

css border-radius屬性是一個簡寫屬性,用於設定四個 border-*-radius 屬性,其語法是語法border-radius: 1-4 length|% / 1-4 length|%。

css border-radius屬性怎麼用

css border-radius屬性怎麼用?

作用:簡寫屬性,用來設定四個 border-*-radius 屬性。

語法:

border-radius: 1-4 length|% / 1-4 length|%;

說明:

#length    定義圓角的形狀。

%    以百分比定義圓角的形狀。    

註解:

依此順序設定每個 radii 的四個值。如果省略 bottom-left,則與 top-right 相同。如果省略 bottom-right,則與 top-left 相同。如果省略 top-right,則與 top-left 相同。

css border-radius屬性使用範例

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
text-align:center;
border:2px solid #a1a1a1;
padding:10px 40px; 
background:#dddddd;
width:350px;
border-radius:25px;
-moz-border-radius:25px; /* 老的 Firefox */
}
</style>
</head>
<body>
<div>border-radius 属性允许您向元素添加圆角。</div>
</body>
</html>

效果輸出:

css border-radius屬性怎麼用

########

以上是css border-radius屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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