This commit is contained in:
qianguyihao
2019-06-01 19:04:38 +08:00
parent 8504557d8a
commit 3d97313732
7 changed files with 195 additions and 13 deletions

View File

@@ -279,7 +279,7 @@ CSS3 对盒模型做出了新的定义,即允许开发人员**指定盒子宽
/*画圆形的方式一*/
.box:nth-child(1) {
border-radius: 100px;
border-radius: 50px;
}
/*画圆形的方式二*/
@@ -288,7 +288,7 @@ CSS3 对盒模型做出了新的定义,即允许开发人员**指定盒子宽
}
.box:nth-child(3) {
border-radius: 200px 0 0 0;
border-radius: 100px 0 0 0;
}
.box:nth-child(4) {