Blogger Information
Blog 5
fans 0
comment 0
visits 8990
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
css选择器优先级
花舞花落淚的博客
Original
962 people have browsed it

实例

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>css选择器优先级</title>

    <style>

       h3{color: #000;

         background: lawngreen;

         }

     .one{

         background: pink;

         }

     #two{

         background: lightseagreen;

         }

   

    </style>

</head>

<body>

    <h3>花开花落花无悔,缘来缘去缘如水。</h3>

    <h3 class="one">花开花落花无悔,缘来缘去缘如水。</h3>

    <h3 clsss="one" id="two">花开花落花无悔,缘来缘去缘如水。</h3>

    <h3 class="one" id="two" style="background:red">花开花落花无悔,缘来缘去缘如水。</h3

</body>

</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

     css选择器优先级:标签选择器 < class选择器 < id选择器 < 内联样式style

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!