CSS 기본 튜토리얼 우선순위

CSS 우선순위


단일 선택기 수준의 우선순위

인라인 스타일> ID 선택기> 클래스 선택기>태그 선택기

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
    <style type="text/css">
     h1{
         color:green;
     }
    .hclass{
        color:bule;
    }
    #hid{
        color:black;
    }
    </style>
    </head>
    <body>
        <div>
        <h1 class="hclass" id="hid"  style="color:red">习近平心中的互联网</h1>
        </div>
    </body>
</html>

방화범 관찰 사용:

26.png



다중 선택기의 우선순위

우선순위 일반적으로 포인팅이 정확할수록 우선순위가 높아집니다.

특별한 경우에는 몇 가지 값을 가정해야 합니다.

  • 우선순위가 1인 태그 선택기

  • 클래스 선택기 우선순위 10

  • ID 선택기 우선순위는 100

  • 인라인 스타일 우선순위는 1000

다음 우선순위를 계산하세요

.news h1{color:red;} 우선순위: 10 + 1 = 11

.title{color:blue;} 우선순위: 10

div.news h1{color:red;} 우선순위: 1 + 10 + 1 = 12

h1.title{color:blue;} 우선순위: 1 + 10 = 11


지속적인 학습
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <style type="text/css"> h1{ color:green; } .hclass{ color:bule; } #hid{ color:black; } </style> </head> <body> <div> <h1 class="hclass" id="hid" style="color:red">习近平心中的互联网</h1> </div> </body> </html>
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!