真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

CSS3中的border-radius屬性詳細(xì)介紹

這篇文章主要講解了“CSS3中的border-radius屬性詳細(xì)介紹”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“CSS3中的border-radius屬性詳細(xì)介紹”吧!

我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、吳堡ssl等。為近千家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的吳堡網(wǎng)站制作公司

Border-radius

border-radius是一種縮寫方法。如果“/”前后的值都存在,那么“/”前面的值設(shè)置其水平半徑,“/”后面值設(shè)置其垂直半徑。如果沒(méi)有“/”,則水平和垂直半徑相等。

CSS Code復(fù)制內(nèi)容到剪貼板

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

等價(jià)于:

CSS Code復(fù)制內(nèi)容到剪貼板

  1. border-top-left-radius: 2em 0.5em;   

  2. border-top-rightright-radius: 1em 3em;   

  3. border-bottom-rightright-radius: 4em 0.5em;   

  4. border-bottom-left-radius: 1em 3em;  

如何使用border-radius屬性

下面是border-radius屬性最基本的使用方法。

CSS Code復(fù)制內(nèi)容到剪貼板

  1. .round {   

  2.  border-radius: 5px; /* 所有角都使用半徑為5px的圓角,此屬性為CSS3標(biāo)準(zhǔn)屬性 */  

  3.  -moz-border-radius: 5px; /* Mozilla瀏覽器的私有屬性 */  

  4.  -webkit-border-radius: 5px; /* Webkit瀏覽器的私有屬性 */  

  5.   

  6.  border-radius: 5px 4px 3px 2px; /* 四個(gè)半徑值分別是左上角、右上角、右下角和左下角 */  

  7. }  

1.用border-radius畫圓
實(shí)心圓
CSS3中的border-radius屬性詳細(xì)介紹

如圖,是用border-radius屬性畫出來(lái)的一個(gè)完美的實(shí)心圓。畫實(shí)心圓的方法是高度和寬度相等,并且把border的寬度設(shè)為高度和寬度的一半。代碼如下。

CSS Code復(fù)制內(nèi)容到剪貼板

  1. #circle {   

  2.  width: 200px;   

  3.  height: 200px;   

  4.  background-color: #a72525;   

  5.  -webkit-border-radius: 100px;   

  6. }  

空心圓
CSS3中的border-radius屬性詳細(xì)介紹

通過(guò)border-radius屬性畫空心圓和畫實(shí)心圓的方法差不多,只是border的寬度只能小于高度和寬度的一半。代碼如下。

CSS Code復(fù)制內(nèi)容到剪貼板

  1. #circle {   

  2.  width: 200px;   

  3.  height: 200px;   

  4.  background-color: #efefef; /* Can be set to transparent */  

  5.        border: 3px #a72525 solid;   

  6.  -webkit-border-radius: 100px;   

  7. }  

虛線圓
CSS3中的border-radius屬性詳細(xì)介紹

CSS Code復(fù)制內(nèi)容到剪貼板

  1. #circle {   

  2.  width: 200px;   

  3.  height: 200px;   

  4.  background-color: #efefef; /* Can be set to transparent */  

  5.        border: 3px #a72525 dashed;   

  6.  -webkit-border-radius: 100px 100px 100px 100px;   

  7. }  

2.半圓和四分之一圓
半圓

CSS3中的border-radius屬性詳細(xì)介紹以本例來(lái)講,半圓的畫法是把寬度設(shè)為高度的一半,并且也只設(shè)置左上角和左下角的半徑。代碼如下。

CSS Code復(fù)制內(nèi)容到剪貼板

  1. #quartercircle {   

  2.  width: 200px;   

  3.  height: 200px;   

  4.  background-color: #a72525;   

  5.  -webkit-border-radius: 200px 0 0 0;   

  6. }  

四分之一圓
CSS3中的border-radius屬性詳細(xì)介紹

四分之一圓的實(shí)現(xiàn)方法是把高度和寬度設(shè)置為相等,只設(shè)置一個(gè)圓角,其半徑等于高度或?qū)挾?。本例代碼如下。

CSS Code復(fù)制內(nèi)容到剪貼板

  1. #quartercircle {   

  2.  width: 200px;   

  3.  height: 200px;   

  4.  background-color: #a72525;   

  5.  -webkit-border-radius: 200px 0 0 0;   

  6. }  

更多玩法

看了這么多實(shí)例后,你完全可以自己創(chuàng)造更多玩法,如:
CSS3中的border-radius屬性詳細(xì)介紹

虛線的半圓和四分之一圓。
CSS3中的border-radius屬性詳細(xì)介紹

配合position屬性做一個(gè)月亮。
CSS3中的border-radius屬性詳細(xì)介紹

配合position、RGBa和z-index這些屬性做一個(gè)本文開頭的色彩維恩圖。

感謝各位的閱讀,以上就是“CSS3中的border-radius屬性詳細(xì)介紹”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)CSS3中的border-radius屬性詳細(xì)介紹這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


分享文章:CSS3中的border-radius屬性詳細(xì)介紹
URL鏈接:http://weahome.cn/article/gepjss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部