html颜色选择器
时间: 2023-12-19 11:32:23 浏览: 163
网页html颜色计算器源码
```html
<!DOCTYPE html>
<html>
<head>
<title>颜色选择器</title>
<style>
.color-box {
display: flex;
justify-content: space-around;
align-items: center;
height: 100px;
}
</style>
</head>
<body>
<div class="color-box" style="background-color: #FF5733">
<span>颜色1</span>
</div>
<div class="color-box" style="background-color: #33FF57">
<span>颜色2</span>
</div>
<div class="color-box" style="background-color: #5733FF">
<span>颜色3</span>
</div>
</body>
</html>
```
阅读全文