HTML+CSS Easy to Get Started Group Selector
Group selector
Syntax:
E1,E2,E3
Description:
Apply the same definition to multiple selectors, you can select symbols separated by commas into groups.
Let’s write an example below. For example, there are div span pp and other tags. There is content in the tags, but I want to use the same css style for their contents. The code is as follows:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>分組選擇符</title> <style type="text/css"> /*現(xiàn)在我需要把div和span 的內(nèi)容設(shè)置紅色 p和h4的為橘黃色*/ div,span{ color:red; } p,h4{ color:#f60; } </style> </head> <body> <div>今天是陰天</div> <span>氣溫降低了,注意保暖</span> <p>我很不喜歡陰天</p> <h4>日全食</h4> </body> </html>