CSS grouping and nested selectors
CSS Grouped and Nested Selectors
##Grouped Selectors
There are many elements with the same style in the style sheet,In order to minimize the code, you can use grouping selectors. Separate each selector with a comma.
Example
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> h1,h2,p { color:green; } </style> </head> <body> <h1> PHP中文網(wǎng)你</h1> <h2>php.cn</h2> <p>學(xué)習(xí)PHP知識(shí)的好選擇.</p> </body> </html>
Run the program and try it
Nested selectors
It may apply to the styling of selectors inside selectors . In the following example, three styles are set: Specify a style for all p elements, specify a style for all class="marked" elements, and specify a style for all class="marked" elements. The p element specifies a style<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> p { color:blue; text-align:center; } .marked { background-color:red; } .marked p { color:white; } </style> </head> <body> <p>褪盡風(fēng)華,我依然在彼岸守護(hù)你</p> <div class="marked"> <p>那些繁華哀傷終成過(guò)往,</p> </div> <p>請(qǐng)不要失望,平凡是為了最美的蕩氣回腸。</p> </body> </html>
Run the program to try it
##