My website currently has a 4 column layout with each div set to a width of 25%, which is resulting in empty space on the right side. How can I adjust this layout to fill the entire screen width?
https://i.sstatic.net/d0cJ6.png
I have created a flexbox slider with images but am facing an issue where there is empty space on the right due to using a 25% width for each slide. Can anyone suggest a solution to fix this problem?
<html>
<head></head>
<body>
<div class="flexbox-slider my-flexbox-slider" style="">
<div class="flexbox-slide">
<img src="https://www.dahuatech.com/upload/2017/10/24/15088249047345orij8.jpg" alt="Slide Image" />
</div>
<div class="flexbox-slide">
<img src="https://www.dahuatech.com/upload/2017/10/24/15088249047345orij8.jpg" alt="Slide Image" />
</div>
<div class="flexbox-slide">
<img src="https://www.dahuatech.com/upload/2017/10/24/15088249047345orij8.jpg" alt="Slide Image" />
</div>
<div class="flexbox-slide">
<img src="https://www.dahuatech.com/upload/2017/10/24/15088249047345orij8.jpg" alt="Slide Image" />
</div> ...
</div>
</body>
</html>