.slider .each-slide {
width: 100vw;
height: 100vh;
image-rendering: auto;
float: left;
line-height: 100vh;
font-size: 40vh;
text-align: center;
background-size: cover;
background-position: center center;
background-color: transparent;
}
< /code>
The slider feature was broken when it was necessary to change the width and height.A different image I added does not fit in this range.It looks like it's half-fitted.How can I give width-height to a different image I added?
.slider .each-slide { width: 100vw; height: 100vh; image-rendering: auto; float: left; line-height: 100vh; font-size: 40vh; text-align: center; background-size: cover; background-position: center center; background-color: transparent; } < /code> The slider feature was broken when it was necessary to change the width and height.A different image I added does not fit in this range.It looks like it's half-fitted.How can I give width-height to a different image I added?