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">
			/*现在我需要把div和span 的内容设置红色  p和h4的为橘黄色*/
			div,span{
				color:red;
			}

			p,h4{
				color:#f60;
			}
	</style>
</head>
<body>
		<div>今天是阴天</div>

		<span>气温降低了,注意保暖</span>

		<p>我很不喜欢阴天</p>

		<h4>日全食</h4>
</body>
</html>


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>分组选择符</title> <style type="text/css"> /*现在我需要把div和span 的内容设置红色 p和h4的为橘黄色*/ div,span{ color:red; } p,h4{ color:#f60; } </style> </head> <body> <div>今天是阴天</div> <span>气温降低了,注意保暖</span> <p>我很不喜欢阴天</p> <h4>日全食</h4> </body> </html>
submitReset Code
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!