Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags more
Archives
Today
Total
관리 메뉴

Rainbow

CSS 기초 !! 본문

web/css

CSS 기초 !!

kkangsseul1014 2023. 10. 27. 16:45

소스코드

 
 
 
 <style>
        .js {
            font-weight: bold;
            color: red;
        }

        #first {
            color: green;
        }

        span {
            color: blue;
        }
    </style>
 
 
 
<h1><a href="index.html">WEB</a></h1>
    <h2 style="background-color:coral;color:powderblue;">JavaScript</h2>
    <p>
        <span id="first" class="js">JavaScript</span> (/ˈdʒɑːvəˌskrɪpt/[6]), often abbreviated as JS, is a high-level,
        dynamic, weakly typed, prototype-based, multi-paradigm, and interpreted programming language. Alongside
        <span>HTML</span> and <span>CSS</span>, <span class="js">JavaScript</span> is one of the three core technologies
        of World Wide Web content production. It is used to make webpages interactive and provide online programs,
        including video games. The majority of websites employ it, and all modern web browsers support it without the
        need for plug-ins by means of a built-in <span class="js">JavaScript</span> engine. Each of the many <span
            class="js">JavaScript</span> engines represent a different implementation of <span
            class="js">JavaScript</span>, all based on the ECMAScript specification, with some engines not supporting
        the spec fully, and with many engines supporting additional features beyond ECMA.
    </p>
</body>
 
 
 

결과문

위 결과문을 설명하자면

1.  <h2 style="background-color:coral;color:powderblue;"> JavaScript </h2>

     - 해당되는 요소에 직접 style 속성을 사용하여 스타일을 줄 수 있다(인라인 스타일)

     - 다른 스타일 방법보다 우선순위가 높다

2.  span { color: blue}

     html문서 내부에 style태그를 사용하여 스타일을 지정할 수 있다(내부 스타일)

  - 인라인 스타일보다 우선순위가 낮고  외부스타일 보다 우선순위가 높다

3.. js  #first (선택자)

  - 특정한 요소들을 선택하여 스타일을 줄 수 있다

  - id : 한번 적용될 때 쓰는 스타일에 id를 사용한다

  - Class : 반복될 필요가 있는 스타일은 클래스를 사용한다

우선순위 적용순서

속성값 ! important > inline > id > Class >  적용된다

'web > css' 카테고리의 다른 글

[css] BEM :(Block, Element, Modifier) 이란?  (0) 2024.01.17
겹치거나 넘치는 요소 다루기  (0) 2023.08.03
css ::) 그리드 레이아웃  (0) 2023.06.19
BEM네이밍 컨벤션  (0) 2023.06.12
position absolute/relative 차이  (0) 2022.08.01