bottom{ position: relative; color: white; width: 100%; height: 150px; margin-top: 20px; text-align: center; background-color: black; .bottom-one{ margin-top: 60px; height: 30px; width: 600px; /* background-color; red; * /* text-align: center; position: absolute; /* margin-top: 60px; */ margin-left: 500px; .bottom a{ color: white; 7 bottom a: hover. color: Oblue;
时间: 2024-04-28 08:20:28 浏览: 229
这段代码是用于设置网页底部的样式,其中包括一个黑色背景、白色文本、链接的样式等等。具体来说:
- `position: relative;` 表示该元素相对于其父元素进行定位。
- `color: white;` 设置文本颜色为白色。
- `width: 100%;` 设置宽度为100%。
- `height: 150px;` 设置高度为150px。
- `margin-top: 20px;` 设置与上方的距离为20像素。
- `text-align: center;` 设置文本居中显示。
- `.bottom-one{}` 定义了一个名为 `bottom-one` 的样式类。
- `margin-top: 60px;` 设置该元素与顶部的距离为60像素。
- `height: 30px;` 设置该元素的高度为30像素。
- `width: 600px;` 设置该元素的宽度为600像素。
- `position: absolute;` 表示该元素相对于最近的已定位祖先元素进行定位。
- `margin-left: 500px;` 设置该元素与左侧的距离为500像素。
- `.bottom a{}` 定义了一个名为 `bottom a` 的样式类,用于设置链接的样式。
- `color: white;` 设置链接文字颜色为白色。
- `bottom a:hover{}` 定义了鼠标悬停在链接上时的样式,将链接文字颜色设置为蓝色。
相关问题
*{ margin: 0; padding: 0; } html,body{ height: 100%; } body{ width: 100%; background-image:radial-gradient(#22002a,#01001f) } a{ text-decoration: none; } #movie_info{ width: 990px; margin: 0 auto; padding-bottom: 60px; box-sizing: border-box; } #movie_info .info{ width: 100%; padding-bottom: 15px; border-bottom: 1px dotted rgb(255,255,255,0.3); } #movie_info .info img{ float: left; box-shadow: 0 0 6px #C4C4C4; margin-top: 36px; } table{ margin-top: 20px; margin-right: 10px; float: right; color: white; font-size: 13px; } table,tr,td,th{ border: none; } th{ font-size: 22px; text-align: left; height: 38px; line-height: 38px; color: #fdfed2; } td{ width: 240px; line-height: 24px; } table a{ display: block; width: 100px; height: 30px; line-height: 30px; border-radius: 5px; color: #FFFFFF; text-align: center; margin-top: 15px; } table .lookInfo{ background-image:linear-gradient(#9ac534,#427e22) ; } table .buy{ background-image:linear-gradient(#ff8b45,#ff5200) ; } table .score{ color: #f2a32e; } table .score .star{ margin-left: 15px; display: inline-block; width: 103px; height: 20px; background: url(../images/star_big.png) left -80px no-repeat; } table .score em{ font-size: 28px; color: #f2a32e; } #movie_info .info:after,#movie_info ul:after{ content: ""; display: block; clear: both; } /*猜你喜欢*/ #movie_info .like{ position: relative; } #movie_info .like span{ position: absolute; top: 10px; left: 25px; display: block; width: 100px; height: 30px; line-height: 30px; border-radius: 2px; background:rgb(220,216,216, 32%); color: #FFFFFF; text-align: center; font-size: 12px; } #movie_info .like ul{ width: 990px; height: 190px; position: absolute; top: 50px; left: 25px; overflow: hidden; } #movie_info .like ul:after{ content: ""; display: block; clear: both; } #movie_info .like li{ width: 119px; text-align: center; float: left; margin-right: 20px; font-size: 12px; color: #e1ab5b; line-height: 20px; cursor: pointer; } #movie_info .like li img{ width: 119px; height: 168px; }。每行代码加上注释
/* 设置页面样式 */
*{
margin: 0;
padding: 0;
}
html,body{
height: 100%;
}
body{
width: 100%;
background-image: radial-gradient(#22002a,#01001f); /* 设置背景颜色 */
}
a{
text-decoration: none;
}
/* 电影信息区域 */
#movie_info{
width: 990px;
margin: 0 auto;
padding-bottom: 60px;
box-sizing: border-box;
}
#movie_info .info{
width: 100%;
padding-bottom: 15px;
border-bottom: 1px dotted rgb(255,255,255,0.3); /* 设置下划线样式 */
}
#movie_info .info img{
float: left;
box-shadow: 0 0 6px #C4C4C4; /* 设置图片阴影 */
margin-top: 36px;
}
table{
margin-top: 20px;
margin-right: 10px;
float: right;
color: white;
font-size: 13px;
}
table,tr,td,th{
border: none;
}
th{
font-size: 22px;
text-align: left;
height: 38px;
line-height: 38px;
color: #fdfed2;
}
td{
width: 240px;
line-height: 24px;
}
table a{
display: block;
width: 100px;
height: 30px;
line-height: 30px;
border-radius: 5px;
color: #FFFFFF;
text-align: center;
margin-top: 15px;
}
table .lookInfo{
background-image:linear-gradient(#9ac534,#427e22); /* 设置按钮渐变背景颜色 */
}
table .buy{
background-image:linear-gradient(#ff8b45,#ff5200);
}
table .score{
color: #f2a32e;
}
table .score .star{
margin-left: 15px;
display: inline-block;
width: 103px;
height: 20px;
background: url(../images/star_big.png) left -80px no-repeat; /* 设置星星图标 */
}
table .score em{
font-size: 28px;
color: #f2a32e;
}
#movie_info .info:after,#movie_info ul:after{
content: "";
display: block;
clear: both;
}
/* 猜你喜欢区域 */
#movie_info .like{
position: relative;
}
#movie_info .like span{
position: absolute;
top: 10px;
left: 25px;
display: block;
width: 100px;
height: 30px;
line-height: 30px;
border-radius: 2px;
background:rgb(220,216,216, 32%);
color: #FFFFFF;
text-align: center;
font-size: 12px;
}
#movie_info .like ul{
width: 990px;
height: 190px;
position: absolute;
top: 50px;
left: 25px;
overflow: hidden;
}
#movie_info .like ul:after{
content: "";
display: block;
clear: both;
}
#movie_info .like li{
width: 119px;
text-align: center;
float: left;
margin-right: 20px;
font-size: 12px;
color: #e1ab5b;
line-height: 20px;
cursor: pointer;
}
#movie_info .like li img{
width: 119px;
height: 168px;
}
统计字段机值: 需求计划,完成指标:99.11% 框架协议,完成指标:101.97% 公开采购,完成指标:100.56% 独加采购,完成指标:100% 招标采购,完成指标:78.6% 平台采购,完成指标:100% 采购资金,完成指标:140.42% 库存周转,完成指标:293.23% 根据这些信息在html中写出一个柱状图
以下是一个简单的 HTML 柱状图,其中使用了 CSS 样式来设置不同字段的颜色和高度。
```html
<!DOCTYPE html>
<html>
<head>
<title>采购完成指标柱状图</title>
<style>
.bar {
display: inline-block;
width: 50px;
height: 200px;
background-color: #4CAF50;
margin-right: 10px;
text-align: center;
color: white;
font-size: 16px;
font-weight: bold;
position: relative;
}
.bar span {
position: absolute;
bottom: -20px;
left: 0;
width: 100%;
text-align: center;
font-size: 14px;
font-weight: normal;
}
.demand-plan {
height: 198px;
background-color: #4286f4;
}
.framework-agreement {
height: 203px;
background-color: #ff9800;
}
.public-procurement {
height: 201px;
background-color: #9c27b0;
}
.single-procurement {
height: 200px;
background-color: #e91e63;
}
.tender-procurement {
height: 157px;
background-color: #f44336;
}
.platform-procurement {
height: 200px;
background-color: #00bcd4;
}
.procurement-funds {
height: 280px;
background-color: #8bc34a;
}
.inventory-turnover {
height: 586px;
background-color: #607d8b;
}
</style>
</head>
<body>
<div class="bar demand-plan">
<span>需求计划</span>
99.11%
</div>
<div class="bar framework-agreement">
<span>框架协议</span>
101.97%
</div>
<div class="bar public-procurement">
<span>公开采购</span>
100.56%
</div>
<div class="bar single-procurement">
<span>独加采购</span>
100%
</div>
<div class="bar tender-procurement">
<span>招标采购</span>
78.6%
</div>
<div class="bar platform-procurement">
<span>平台采购</span>
100%
</div>
<div class="bar procurement-funds">
<span>采购资金</span>
140.42%
</div>
<div class="bar inventory-turnover">
<span>库存周转</span>
293.23%
</div>
</body>
</html>
```
这个柱状图中每个条形都代表了一个字段的完成指标,高度表示完成率。不同字段使用了不同的颜色,并在下方显示了字段名称和完成率。你可以根据需要调整每个条形的颜色和高度。
阅读全文