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?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

yes it is possible:

p, input {
    &.numeric {
        float: right;
    }
}

The '&' is necceassry to connect with p/input. Without the result will be p .numeric {...}

link|improve this answer
I don't think the & is necessary. Is there an issue with just nesting as @hunter suggested? – spike Nov 16 '11 at 16:37
Nevermind, I see your other comment. Good point – spike Nov 16 '11 at 16:39
yea, added some clarification :) – Rito Nov 16 '11 at 16:43
feedback

You could simply do .numeric, but then it would apply to everything with a class of numeric. If you only want it to apply to paragraphs and inputs then what you're doing is the correct approach.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.