三角形的制作html+css

<!DOCTYPE html>
<html>
	<head>
		<title>三角形</title>
		<meta charset="utf-8" />
		<style>
			div {
				position: absolute;
				width: 0;
				height: 0;
				top: 10px;
				right: 52px;
				border-style: solid;
				border-width: 5px 0 5px 7px;
				border-color: transparent transparent transparent #FF6C05;
			}
		</style>
	</head>
	<body>
		<div></div>
	</body>
</html>
原创文章 22 获赞 4 访问量 2591

猜你喜欢

转载自blog.csdn.net/tuzi007a/article/details/105592271