re:从0开始的CSS之旅 12. 轮廓、阴影、圆角-3. 圆角

时间:2024-02-15 20:47:17

border-radius 设置元素的圆角
可以设置四个角的圆角
border-top-left-radius
border-top-right-radius
border-bottom-right-radius
border-bottom-left-radius
border-radius可以直接设置四个角
border-radius: 50px 100px 150px 200px; 左上 右上 右下 左下(顺时针)
border-radius: 50px 100px 150px; 左上 右上左下 右下

示例如下:

<!DOCTYPE html>
<html lang="en">

<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Outline, shadow, rounded corners</title>

	.box1 {
		width: 200px;
		height: 200px;
		background-color: #c7edcc;
	
		margin: 100px auto;
		/* 设置轮廓 */
		/* outline: 10px solid red; */
	
		/* 设置阴影 */
		/* box-shadow: 30px 30px 50px 5px rgba(0, 0, 0, .5); */
	
		/* 设置圆角 */
		/* border-radius: 50px 100px 150px 200px; */
		/* border-radius: 50px 100px 150px; */
	
		border-radius: 50%;
	
	}
	
	/* .box2 {
		width: 300px;
		height: 200px;
		background-color: #fde6e0;
	} */
</head>

<body>
	<div class="box1"></div>
	<div class="box2"></div>
</body>

</html>