css border-radius屬性是一個簡寫屬性,用於設定四個 border-*-radius 屬性,其語法是語法border-radius: 1-4 length|% / 1-4 length|%。
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屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!