CSS Nesting Selectors ===================== It is possible to apply a style for a selector within a selector. p { color:blue; text-align:center; } .marked { background-color:red; } .marked p { color:white; }