소스

* 지난 포스팅에서 잠깐 보여준 display: inline-block; / block; 차이 확인

* 공통적으로 배경색을 지정하고 아래에 배경색을 다시 지정하면 오버라이드

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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <style>
            #in02,#box02,#box03{
                background-color: bisque;
                height: 100px;
                width: 100px;
            }
            #box03{
                display: inline-block;
            }
            #box03{
                background-color: aquamarine;
            }
            #in02{
                font-size: 30px;
                display: block;
            }
        </style>
    </head>
    <body>
        <div>box1</div>
        
        <!-- 블럭 라벨 -->
        <div id="box02">box2</div>
        <div id="box03">box3</div>
        <!-- 인라인 라벨 -->
        <a>box3의 display가 인라인-블럭이라 ,</a>
        <a>옆으로 이렇게 </a>
        <span>inline1</span>
        <span id="in02">inline2</span>
        <span>inline3</span>
        <br/>
        <br/>
    </body>
</html>
cs

결과


소스

* 마우스를 올리고 있는 동안 : 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 이름



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
<html>
<head></head>
<body>
  <h1>회원가입</h1>
  <form action="ex01.html">
   id:<input type="text" size="10"><br>
   pw:<input type="password" maxlength="5"><br>
   
   취미:
    <select>
          <option>농구</option>
          <option selected="selected">배구</option>
          <option>야구</option>
    </select><br>
    
     관심사:
     <input type="checkbox">java
     <input type="checkbox" checked="checked">web
     <input type="checkbox">spring
   <br>
   
   하나만 선택:
   <input type="radio" name="red">java
   <input type="radio" name="red" checked="checked">spring
   <input type="radio" name="red">web<br>
   <input type="file">file
   <br>
   <textarea rows="5" cols="10"></textarea>
   <br>
   <input type="submit" value="입력">
   <input type="reset" value="취소">
  </form>
  
</body>
</html>
cs




* 테이블 : <table border="0" width="가로길이" height="세로길이" align="위치">

border="1" or "0" : 1은 테두리 표시

 : 0은 테두리 표시하지 않음을 뜻한다


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
<html>
<head></head>
<body>
  <table border="0" width="100%" height="500" align="center">
    <tr height="50">
      <th width="20%">1줄</th>
      <th>2줄</th>
      <th>3줄</th>
    </tr>
    <tr>
      <td>1줄,1행</td>
      <td>
        <table border="1" width="100%" height="200" align="center">
            <tr height="50">
                <th>1줄</th>
                <th>2줄</th>
                <th>3줄</th>
            </tr>
            <tr>
                <td>1줄,1행</td>
                <td>2줄,1행</td>
                <td>3줄,1행</td>
            </tr>
            <tr>
                <td>1줄,2행</td>
                <td>2줄,2행</td>
                <td>3줄,2행</td>
            </tr>
        </table>
      </td>
      <td>3줄,1행</td>
    </tr>
    <tr>
      <td>1줄,2행</td>
      <td>2줄,2행</td>
      <td>3줄,2행</td>
    </tr>
  </table>
</body>
</html>
cs



+ Recent posts