#img1{ max-width: 100%; } .banner{ position: relative; } .bing{ position: absolute; top: 30%; font-size: 100px; font-weight: bold; width: 100%; color: #aaaa7f; } .circle{ position: absolute; right: 0; bottom: 0; } #pre{ float: left; /* background-color: #b0b0b0; */ } #next{ float: right; } .circle li{ list-style: none; float: left; border: 1px solid #b0b0b0; width: 30px; height: 30px; border-radius: 50%; text-align: center; line-height: 30px; margin-right: 10px; } #img1{ position: relative; left: 23%; }添加注释
时间: 2023-06-20 07:10:34 浏览: 181
/* 设置图片最大宽度为100% */
#img1{ max-width: 100%; }
/* 设置横幅的位置为相对 */
.banner{ position: relative; }
/* 设置Bing字样的位置为绝对,位于横幅的上方 */
.bing{
position: absolute;
top: 30%;
font-size: 100px;
font-weight: bold;
width: 100%;
color: #aaaa7f;
}
/* 设置圆形按钮的位置为绝对,位于横幅的右下角 */
.circle{
position: absolute;
right: 0;
bottom: 0;
}
/* 设置向前按钮的位置为左浮动 */
#pre{
float: left;
/* background-color: #b0b0b0; */
}
/* 设置向后按钮的位置为右浮动 */
#next{
float: right;
}
/* 设置圆形按钮的样式 */
.circle li{
list-style: none;
float: left;
border: 1px solid #b0b0b0;
width: 30px;
height: 30px;
border-radius: 50%;
text-align: center;
line-height: 30px;
margin-right: 10px;
}
/* 设置第一张图片的位置为相对,向左偏移23% */
#img1{
position: relative;
left: 23%;
}
阅读全文