I want to apply a style to all <p> and <input> elements of the numeric class using css.
Is it possible to consolidate this so that I only write "numeric" once?
p.numeric,input.numeric {
float: right;
}
I'm also using sass, so if it's not possible in CSS is it possible with the sass additions?