I have a button background class that I want to reuse multiple times. How can I keep all the common styles separate and only change the URL multiple times?
Here is my CSS:
.menuBtnColour{
position: relative; //common
top: 0;//common
left: 0;//common
right: 0;//common
bottom: 0;//common
background-repeat: no-repeat;//common
background-size: 50%;//common
background-image: url(1.png); //Is there a way to keep this separated for use with the above styles?
}