H5+CSS3+JS逆向前置——DIV+CSS绘制旗帜练习
以下是使用HTML和CSS绘制中国国旗的示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>国旗绘制</title>
<style>
.china-flag {
width: 150px;
height: 90px;
background-color: #EB0000;
position: relative;
overflow: hidden;
}
.china-flag::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 90px;
height: 90px;
background-color: white;
transform: rotate(-45deg);
}
.china-flag::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 150px;
height: 90px;
background-color: #EB0000;
transform: rotate(45deg);
}
</style>
</head>
<body>
<div class="china-flag"></div>
</body>
</html>
这段代码使用了CSS伪元素 ::before
和 ::after
来创建国旗的红色矩形和白色菱形,并通过 transform
属性的旋转来构造国旗的形状。
评论已关闭