1
Good evening, I had a question to put the buttons side by side. I put the inline-block too, but I could not solve.
.button {
width: 10%;
height: 50px;
border: 0;
cursor: pointer;
background:#4169E1;
border-radius: 20px;
color: white;
display: grid;
align-items: center;
justify-content: center;
}
.button:hover{
background: #6495ED;
}
<div class="buttons">
<a href="https://www.linkedin.com" target="blank" class="button" type="button">LinkedIn</a><br>
<a href="mailto:[email protected]" target="blank" class="button" type="button">E-mail</a>
</div>
in the class Buttons which is the class of the div where you have the <a></a> put a display:flex;
– Ismar Santos