And i want to create a css that is specific to this button only that has the href="https://link.com/inst
link and is of class btn btn-primary btn-block
.
the class btn btn-primary btn-block
is a global bootstrap class therefore if i redefine the class only it will change any other button in the website.
.btn .btn-primary .btn-block a[href^="https://link.com/inst"]{
font-family:Verdana;
font-size:22px;
color:red;
}
<a href="https://link.com/inst" class="btn btn-primary btn-block">Calculate Your Order</a>
I dont know how to incorporate this two together.