Quote:
Originally Posted by cybmole
my only remaining CSS puzzle is body vs .body - no joy googling css syntax for explanation of when not to add the dot
|
‘body’ applies to the element ‘body’. ‘.body’ applies to all elements with class="body". Similar ‘#body' would apply to the element with id="body".
Combined: p.xxxx would apply to elements <p class="xxxx">.