我之前使用过 background-size:cover / contains 并认为我了解背景大小/样式的工作原理,但显然不是。我无法在下面的小提琴链接中获取手风琴的背景图像以进行合作。我只是想在不拉伸的情况下将图像调整为 600px 宽度,任何帮助将不胜感激。<3
.accordian li:first-child {
width:600px;
}
/*Reduce with of un-hovered elements*/
.accordian ul:hover li {width: 40px;}
/*Lets apply hover effects now*/
/*The LI hover style should override the UL hover style*/
.accordian ul li:hover {
width: 600px;
height: 320px;
background-size:cover;
}
.accordian li img {
display: block;
width:600px;
height:320px;
background-size:cover;
}