将一个100*100的盒子,变成圆形,是一个简单的实操,想要完成这个实操,最关键的是一个知识点,使用 CSS3 border-radius
属性,你可以给任何元素制作 "圆角"
border-radius
属性,可以使用以下规则:
- 四个值: 第一个值为左上角,第二个值为右上角,第三个值为右下角,第四个值为左下角
- 三个值: 第一个值为左上角, 第二个值为右上角和左下角,第三个值为右下角
- 两个值: 第一个值为左上角与右下角,第二个值为右上角与左下角
- 一个值: 四个圆角值相同
代码如下:
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>圆形</title><style>.circle{width: 100px;height: 100px;border: 1px blue dotted;background-color: yellow;border-radius: 50%;}</style>
</head>
<body><div class="circle"></div>
</body>
</html>
实现效果: