基本选择器

基本选择器

1、标签选择器:选择一类标签 标签{}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--内部样式-->
    <style>
        /*标签选择器,会选择到页面上所有的这个标签的元素*/
        h1 {
            color: aqua;
            background-color: antiquewhite;
            /*border-radius用于控制圆角边框*/
            border-radius: 5px;
        }
        p {
            font-size: 60px;
            color: #d97fff;
        }
    </style>
</head>
<body>
<h1>h1标题</h1>
<p>java学习</p>
</body>
</html>

2、类选择器 class:选择所有class属性一致的标签,跨标签 .类名{}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--内部样式-->
    <style>
        /*类选择器的格式 .class的名称{}
        好处,可以多个标签归类,是同一个class,可以复用*/
        .c1{
            color: blue;
        }
        .c2{
            color: burlywood;
        }
    </style>
</head>
<body>
<h1 class="c1">h1标题</h1>
<p class="c2">java学习</p>
</body>
</html>

3、id选择器 :全局唯一! #id名{}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--内部样式-->
    <style>
        /*id选择器: id必须保证全局唯一,格式为:
       #id名称{}
       不遵循就近原则,固定的
       id选择器 > class选择器 > 标签选择器
       */
        #c1{
            color: beige;
        }
        #c2{
            background-color: aqua;
        }
    </style>
</head>
<body>
<h1 id="c1">h1标题</h1>
<p id="c2">java学习</p>
</body>
</html>

优先级:id > class > 标签

上一篇:bootstrap模板


下一篇:如何实现组合选项的unordered_set或unordered_map