Is it possible to apply styles like this in CSS?
.bordered
{
border: 10px dashed yellow;
}
form input
{
use .bordered;
font-size: 10px;
}
Alternatively, how can I achieve this without directly embedding each CSS code block in the HTML element?