css3教程-border-radius屬性

來源:互聯網
上載者:User
前一篇文章呢,我們給大家主要講解了css3教程-邊框,順便簡單的提了一下邊框的3種屬性,接下來翠兒姐給大家介紹css3教程-border-radius屬性,這款屬性是邊框的屬性之一,在前端開發工作中會經常用到。歡迎大家前來瞭解。

給大家先看一個執行個體:

向 div 元素添加圓角邊框:

div{border:2px solid;border-radius:25px;}

瀏覽器支援:

IE9+、Firefox 4+、Chrome、Safari 5+ 以及 Opera 支援 border-radius 屬性。

定義和用法:

border-radius 屬性是一個簡寫屬性,用於設定四個 border-*-radius 屬性。

提示:該屬性允許您為元素添加圓角邊框!

文法:

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

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

例子 1

border-radius:2em;

等價於:

border-top-left-radius:2em;border-top-right-radius:2em;border-bottom-right-radius:2em;border-bottom-left-radius:2em;

例子 2

border-radius: 2em 1em 4em / 0.5em 3em;

等價於:

border-top-left-radius: 2em 0.5em;border-top-right-radius: 1em 3em;border-bottom-right-radius: 4em 0.5em;border-bottom-left-radius: 1em 3em;

以上就是css3教程-border-radius屬性的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.