[EMAIL PROTECTED] wrote:

Is it possible to create multiple <p> styles or at least have an another class that 
works on a section of text? When I set up another class (.normal_spacing)  the <P> 
tag still styles everything in the div.
Maybe something to so with inheritance?
You might assign a class: #left p.c1 {...}
It is not a good idea to use px for line-height. Assign a raw number instead, for example: line-height: 1; line-height: 1.5; line-height: 2; and, so on.
You are using a 3 value shorthand for the margins. Is that what you want?
p { margin: 2em }When only one value is defined, it applies to all sides;
p { margin: 1em 2em }When 2 values are defined the first is for the horizontal top and bottom, and the second one is for right and left;. p { margin: 1em 2em 3em }When 3 values are defined. /Margin-top/ is set to the first value, /margin-left/ and /margin-right/ are set to the second, and /margin-bottom/ is set to the third;
When 4 values are defined, the top is defined first and then goes clockwise.
It would be easier if you provided an URI to the page you are having problems with...
Regards,
David Laakso

--
David Laakso
http://www.dlaakso.com/


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to