欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

三角形

程序员文章站 2022-04-01 12:39:30
...

宽度和高度都为0的情况下画一个正方形是这样子的

<html>

<head>
<title>画正方形</title>
<style>
#item {
	width: 0;
	height: 0;
	border-left: 50px solid blue;
	border-right: 50px solid blue;
	border-top: 50px solid blue;
	border-bottom: 50px solid blue;
	background: white;
}
</style>
</head>

<body>
<p id='item'></p>
<p>title 元素的内容会显示在浏览器的标题栏中。</p>
</body>

</html>

三角形

<html>

<head>
<title>直角三角形</title>
<style>
#item {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid blue;
	border-top: 50px solid transparent;
	border-bottom: 50px solid blue;
	background: white;
}
</style>
</head>

<body>
<p id='item'></p>
<p>title 元素的内容会显示在浏览器的标题栏中。</p>
</body>

</html>

三角形

<html>

<head>
<title>等腰三角形</title>
<style>
#item {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 50px solid transparent;
	border-bottom: 50px solid blue;
	background: white;
}
</style>
</head>

<body>
<p id='item'></p>
<p>title 元素的内容会显示在浏览器的标题栏中。</p>
</body>

</html>

三角形