Creating HTML Class
In the following HTML code, a class is created with an anchor tag inside.
Although CSS is applied to create a button, the border-radius property seems to not be functioning as expected.
.instagram_button a {
font-weight: 500;
font-size: 20px;
line-height: 19px;
color: white;
padding: 18px 35px;
background: black;
border-radius: 30px;
text-decoration: none;
display: inline-block;
border: 2px solid transparent;
border-image: linear-gradient(to right, #6610f2, #FF6600);
border-image-slice: 1;
}
<div class="instagram_button">
<a href="#">more photos</a>
</div>