IT编程技术

天行健,君子以自强不息;地势坤,君子以厚德载物;

【前端实战】-圆角实现

2024-9-4 博主:Splendor 前端实战

圆角实现


<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style>
			div {
				width: 500px;
				height: 36px;
				border: 2px solid red;
				border-radius: 20px 0 0 20px;
			}
		</style>
	</head>
	<body>
		<div></div>
	</body>
</html>
网页地址:
https://www.excelstudy.icu/blog/HtmlTest/01yuanjiaoshixian/

标签: 前端实战