소스

* 마우스를 올리고 있는 동안 : hover
* 마우스를 클릭하고 있는 동안 : active
* 마우스를 한번 클릭 한 이후 : visited

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <style>
            li{
                display: inline-block;
                background-color: cornflowerblue;
                color: white;
            }
            a{
                color: aliceblue;
            }
            /* 마우스 오버(마우스 올렸을때) */
            a:hover{
                background-color: chocolate;
            }
            /* 마우스 클릭하고있을때 */
            a:active{
                background-color: aqua;
            }
            /* 마우스 한번클릭후 */
            a:visited{
                color: white;
            }
        
        </style>
    </head>
    <body>
        <header>
            head
        </header>
        <nav>
            <ul>
                <li><a href="#1">menu1</a></li>
                <li><a href="#2">menu2</a></li>
                <li><a href="#3">menu3</a></li>
                <li><a href="#foot4">foot으로 이동</a></li>
            
            </ul>
        </nav>
        <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
        <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
        <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
        <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
        <br/><br/><br/><br/><br/>
        
        <footer id="foot4">
            foot
        </footer>
    </body>
</html>
cs

* display: inline-block / block 의 차이 알기(다음포스팅에 다시 언급)


결과

1. 첫화면

2. 마우스를 menu1에 올렸을 경우이다.

3. 클릭을 하고있는 중 이다.

4. menu1을 클릭 후 에도 color 이 하얀색으로 유지 된다. (주소란에 페이지가 넘어간 것을 확인 할 수 있다)

5. foot으로 넘어가는 버튼 클릭했을 경우 페이지가 아래로 넘어간다.


1. 인라인 방식

- 해당태그의 style 속성에 넣는 방식이다.


예시)

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
    </head>
    <body>
        <h1 style="background-color:gray;">제목1</h1>
        <p style="color:red; font-size: 50px;">제목에 따른 내용(문단)입니다.</p>
    </body>
</html>
cs

결과)

2. 내부의 스타일 태그 방식

- 해당파일의 <head>태그 안에 <style>태그에 넣는 방식이다.

* <style>

지시자{

속성:속성값;

}

  </style>


예시)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <style>
            h1{
                background-color: yellow;
                text-align: center;
            }
            #content{
                color: deeppink;
                font-style: italic;
            }
        </style>
    </head>
    <body>
        <h1>제목1</h1>
        <p id="content">제목에 따른 내용(문단)입니다.</p>
    </body>
</html>
cs

결과)


3. 외부의 .css 파일 연결하는 방식

- 해당파일 안이 아니라 별도의 .css 파일을 생성해 <link>태그로 연결하는 방식이다.


예시)

.css 파일

1
2
3
4
5
6
7
8
9
10
11
12
.sub,#content{
    color: yellow;
}
.sub{
    background-color: tomato;
}
#content{
    font-size: 50px;
}
strong{
    color: blueviolet;
}
cs

.html 파일

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        
        <link href="ex01.css" type="text/css" rel="stylesheet" />
        
    </head>
    <body>
        <h1 class="sub">제목1</h1>
        <h1>제목2</h1>
        <h1 class="sub">제목3</h1>
        <h1>제목4</h1>
        
        <p class="sub">내용 작성123</p>
        <p id="content">제목에 따른 <strong>내용(문단)</strong> 입니다.</p>
    </body>
</html>
 
cs

(파일이 다르다)

결과)


* 지시자

# : id 이름

. : class 이름



+ Recent posts