CSS画圆角

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css" media="screen">
		div{
			width: 100px;
			height: 100px;
			margin: 0 auto;
			background: #ccc;
			/* border-radius: 50%; */
			border-radius: 10px 20px 30px 40px/20px 30px 40px 50px;
		}
	</style>
</head>
<body>
	<div>
		
	</div>
</body>
</html>

 

相关文章:

  • 2022-01-01
  • 2021-11-20
  • 2021-06-16
  • 2021-05-16
  • 2021-10-05
  • 2022-12-23
  • 2021-05-30
  • 2021-04-16
猜你喜欢
  • 2021-06-24
  • 2021-05-29
  • 2021-05-26
  • 2021-06-29
  • 2022-01-20
  • 2021-12-04
相关资源
相似解决方案