<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>画菱形和平行四边形</title>
<style>
.diamond{
width: 200px;
height: 200px;
background-color: #6a6;
margin: 100px auto;
transform: rotate(45deg);
}
.parallel{
width: 200px;
height: 200px;
background-color: #6a6;
margin: 200px auto;
/* transform: skew(20deg); */
/* transform: skew(0deg,30deg); */
transform: skew(20deg,30deg);
}
</style>
</head>
<body>
<div class="diamond"></div>
<div class="parallel"></div>
</body>
</html>
?
|