I want to divide body into 2 parts without any padding or gap.
But when I divide body by grid
.
It shows me some gap even if I set grid-gap
as 0.
It should show left as whole blue and right as whole white.
How to remove those gaps?
body {
width: 100%;
height: 100vh;
background-color: #5FAAD9;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-column-gap: 0;
gap: 0;
}
#Record {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
padding: 20px;
}
#List {
width: 100%;
height: 100vh;
background-color: white;
}