|
CodeAve.com - CSS - Text Display | |||
|
|
|||
| Contextual Selectors | ||||
|
|
||||
<html> <head> <title>CodeAve.com/CSS - Contextual Selectors</title> <style type="text/css"> <!-- /* All contextual selectors are seprated by a space not by a comma as in CSS grouping */ /* two selector example */ p i {background: tan;} /* three selector example */ p i strong {background: yellow;} --> </style> </head> <body bgcolor="#FFFFFF"> <p> Regular document text not affected by style sheet. <br> <i> Document text that affected by style sheet, because of the <i> tags inside the <p> tags </i> </p> <p>More document text not affected by style sheet, although contained between <p> tags</p> <i>More document text not affected by style sheet, although contained between <i> tags</i> <p><i><strong> Document text that affected by style sheet, because of the <p><i><strong> tags surrounding the text </strong></i></p> </body> </html>
|
||||
|
|
||||