84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
border-radius 怎么用的。后面有什么参数?
How to create a rounded corner effect? -PHP Chinese website Q&A-How to create a rounded corner effect? -PHP Chinese website Q&A
Let’s take a look and learn.
在css中我们要使用border-radius 这个属性,后面我们写上像素即可,
例如 我们给一个div设置宽高
然后我们来看下css部分
.dv1{
width:200px;
height:200px;
border:1px solid red;
border-radius:8px;
}
这样就有个圆角的效果了!
How to create a rounded corner effect? -PHP Chinese website Q&A-How to create a rounded corner effect? -PHP Chinese website Q&A
Let’s take a look and learn.
在css中我们要使用border-radius 这个属性,后面我们写上像素即可,
例如 我们给一个div设置宽高
然后我们来看下css部分
.dv1{
width:200px;
height:200px;
border:1px solid red;
border-radius:8px;
}
这样就有个圆角的效果了!