I have a dilemma regarding the spacing between two hyperlinks within a div tag. Can anyone advise on how to create this space effectively?
.btn-filter {
background-color: #ffffff;
font-size: 14px;
outline: none;
cursor: pointer;
height: 40px !important;
width: 110px !important;
border: 1px solid #ccc;
vertical-align: middle;
display: table-cell;
margin-left: 10px !important;
}
.btn-filter>a {
color: #ccc;
display: flex;
align-items: center;
justify-content: center;
}
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="66040909121512140716265248504857">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<div class="d-inline">
<div class="btn-filter w-50">
<a asp-controller="" asp-action="" class="">0-2</a>
</div>
<div class="btn-filter w-50">
<a asp-controller="" asp-action="" class="">3-5 </a>
</div>
</div>