我是这个 CSS 的新手。我的第一个滑块中有 2 个图像。实际目标是考虑将其完整图像显示到该滑块中,但不幸的是,由于图像宽度比滑块宽度更小,因此无法使图像完全适合滑块。
这是该滑块的CSS代码:
.ei-slider{
position: relative;
width: 100%;
max-width: 960px;
height: 338px;
margin: 0 auto;
background: #fdfdfd url('../images/bg/elastic-slider-bg.png') repeat-x top left;
}
.ei-slider-loading{
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
z-index:999;
background: #161616;
color: #fff;
text-align: center;
line-height: 400px;
}
.ei-slider-large{
height: 100%;
width: 100%;
position:relative;
overflow: hidden;
list-style:none;
margin:0;
}
.ei-slider-large li{
position: absolute;
top: 0px;
left: 0px;
overflow: hidden;
height: 100%;
width: 100%;
}
.ei-slider-large li img{
width: 100%;
}
您能否请有人告诉如何将完整图像完美地放入该滑块中?