可以使用border-radius属性来设置圆角化
有四个值 分别是:左上 右上 左下 右下
三个值 分别是:左上 右上左下 右下
两个值 分别是:左上右下 右上左下
给单独一角设置圆角化可以使用:border-xxx-xxx-radius
例:左上角 圆角化: border-top-left-radius
div{width: 100px;height: 100px;background-color: red;margin: 50px 0;/* 设置左上角圆角 */border-top-left-radius: 10px;}
例:设置一个半圆
div{width: 200px;height: 100px;background-color: red;margin: 50px 0;/* 设置一个半圆 */border-radius: 100px 100px 00 ;}
例:设置四分之一圆
div{width: 100px;height: 100px;background-color: red;margin: 50px 0;/* 设置一个四分之一圆 */border-radius: 100px 0 0 0;}
原创作者:吴小糖
创作时间:2024.1.2