其他分享
首页 > 其他分享> > css的组合选择器

css的组合选择器

作者:互联网

在这里插入图片描述

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			div,p,a{
				background-color: #FF7F50;
			}
		</style>
	</head>
	<body>
		<p>P标签</p>
		<div>DIV标签</div>
		<a>A标签</a>
	</body>
</html>

云风帆 发布了18 篇原创文章 · 获赞 0 · 访问量 272 私信 关注

标签:私信,组合,color,标签,272,文章,选择器,css
来源: https://blog.csdn.net/gmp2208/article/details/104152170