我创建了 2 个三角形,CSS
我想把它们放在一起,但我做不到。
这是我的代码:
三角.html
<!DOCTYPE HTML>
<html>
<head>
<title>Triangle</title>
<link href="style.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<div class="left"><div class="inside"></div></div>
</body>
</html>
样式.css
.left
{
width: 0px;
height: 0px;
border-bottom: 20px solid transparent;
border-top: 20px solid transparent;
border-right: 20px solid yellow;
}
.left .inside
{
width: 0px;
height: 0px;
border-bottom: 18px solid transparent;
border-top: 18px solid transparent;
border-right: 18px solid black;
}