I have the following HTML on the page
<h4>Some text</h4> <p> Some more text! </p>
In my css, I have the following selector for styling an H4 element. The HTML code above is just a small part of the whole code, there are several divs more wrapped around the shadow block.
#sb-wrapper #sb-wrapper-inner #sb-body #myDiv h4 { color : #614E43; margin-top : 5px; margin-left : 6px; }
So, I have the right style for my H4 element, but I also want to tweak the paragraph tag in my HTML. Is this possible with CSS selectors? And if so, how can I do this?
html css css-selectors
Rob Jan 7 '11 at 7:17 2011-01-07 07:17
source share