博客列表 >1009作业: css元素来源有哪些,优先级冲突的解决方案

1009作业: css元素来源有哪些,优先级冲突的解决方案

归宿的博客
归宿的博客原创
2020年10月13日 15:28:16653浏览

1009css 作业

  1. <!-- 引入外部样式 -->
  2. `<link rel="stylesheet" href="style.css" />`
  3. <!-- 当前页面样式 -->
  4. <style>
  5. h1 {
  6. color: blue;
  7. }
  8. </style>

</head>
<body>
<header>

<!-- 行内样式 -->

<h1 style="background: yellow">css元素来源有哪些</h1>

  1. <p class="title">css优先级冲突的解决方案</p>
  2. <p class="content">
  3. 1.源码的顺序(css同样属性的顺学来决定优先级;) <br />
  4. 2.根据样式表的来源(外部样式,当前页面样式,行内样式); <br />
  5. 3.选择器的优先级:tag < class < id; <br />
  6. 4.可以使用强制执行 !important;
  7. </p>

</header>

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议