1. 程式人生 > >梯形【2018.11.26】

梯形【2018.11.26】

<html>
<head>
	<title>梯形</title>
	<style type="text/css">
		.trapezoid{
			position:relative;
			width:60px;
			padding:60px;
		}

		.trapezoid::before{
			content:"";
			position:absolute;
			top:0;right:0;bottom:0;left:0;
			transform:perspective(20px) scaleY(1.3) rotateX(5deg);
			transform-origin:bottom;
			background:yellowgreen;
		}
	</style>
</head>

<body>
	<div class="trapezoid"></div>
</body>
</html>