if i have 2 different classes applying the same property with different values what determines which value is applied? and is there some property to give priority to one class over another?
example being:
.purchase_button Label
{
font-size: 24px;
text-align: center;
color: white;
text-overflow: noclip;
}
.purchase_title
{
font-weight: bold;
font-size: 48px;
}
with this example my text is bolded and has 24px font, but i want it to have the 48px font from the title class
i know i can set the style in js to override it, but id rather keep the solution in xml/css