DEV Community

Discussion on: Automatic Image Slider using only HTML & CSS

Collapse
 
tensh1mp_ profile image
tai ron

is there a way to change the size of the slideshow?

Collapse
 
shantanu_jana profile image
Shantanu Jana

It's very simple,

.container{
width: 85vmin; / * Add your preferred size here * /
position: absolute;
transform: translate (-50%, - 50%);
top: 50%;
left: 50%;
overflow: hidden;
border: 10px solid #ffffff;
border-radius: 8px;
box-shadow: 10px 25px 30px rgba (0,0,0,0.3);
}

Collapse
 
tensh1mp_ profile image
tai ron

how about enlarging the images inside of the slideshow