I am currently working with Bootstrap and I am encountering some empty space on the left and right of my div. Instead of filling up the entire screen, it seems to only be taking up 99%.
MY CODE:
#social-links {
background-color : #242424;
/* border : .5px solid white; */
text-align : center;
color : white;
margin-bottom : -16px;
margin-top : -9px;
margin-left : 0px;
}
#social-links a {
color : white;
display : block;
width : 100%;
padding : 2px;
}
#social-links a:hover {
transition : 3s;
background-color : white;
color : black;
text-align : center;
}
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="24464b4b50575056455464100a110a17">[email protected]</a>/dist/css/bootstrap.min.css">
<div class="container-fluid border p-0 m-0 no-border">
<div class="row p-0 m-0">
<div class="col-4 p-0 mx-0 " id="social-links">
<a href="#">Discord</a>
</div>
<div class="col-4 p-0 mx-0 " id="social-links">
<a href="#">Instagram</a>
</div>
<div class="col-4 p-0 mx-0 " id="social-links">
<a href="#">Twitter</a>
</div>
</div>
</div>