How can I remove the white gaps to the left and right of this div container?
This is my HTML code:
<div class="container-fluid">
<div class="centered"><h1>Hello World</h1></div>
<img
class="img3"
src="pictures/1920px-Parliament_of_Hungary_November_2017.jpg"
alt=""
style="width: 100%"
/>
</div>
And this is my CSS code:
.container-fluid {
position: absolute;
width: 100%;
text-align: center;
top: 52px;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}