以下是一个使用HTML和CSS绘制常见图表的简单示例,这里我们将绘制一个简单的条形图。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bar Chart Example</title>
<style>
.bar-chart-container {
width: 500px;
height: 300px;
margin: 0 auto;
display: flex;
align-items: flex-end;
}
.bar {
width: 50px;
margin: 0 5px;
background-color: #4caf50;
text-align: center;
color: white;
display: flex;
align-items: flex-end;
justify-content: center;
}
</style>
</head>
<body>
<div class="bar-chart-container">
<div class="bar" style="height: 30%;">30%</div>
<div class="bar" style="height: 60%;">60%</div>
<div class="bar" style="height: 80%;">80%</div>
<div class="bar" style="height: 40%;">40%</div>
<div class="bar" style="height: 70%;">70%</div>
</div>
</body>
</html>
这段代码使用了一个容器 .bar-chart-container
来包裹每个条形图的 .bar
元素。每个 .bar
的高度代表了其代表的百分比,通过CSS的 height
属性来设置。通过这种方式,我们可以简单地用CSS和HTML创建出一个可以自定义数据的条形图。