김철용

<colgroup>정리

· 2018-03-29 (목) 03:22:53 · 7192 · 3

# <colgroup>은 많이 사용하지 않는 태그같은데요. 정리해보았습니다.

 

* <colgroup>tag는 테이블에서 하나, 여러개의 칼럼의 형식을 정한다(<colgroup> tag specifies a group of one or more columns in a table for formatting.)


* <colgroup>tab는 각각의 cell, row에 style을 반복해서 적용하는대신에 전체칼럼(entire columns)에 style을 적용하는데 유용하다.

 

* <col>태그는 <colgroup>안에서 칼럼의 속성을 정하는데(각각의 칼럼마다 다른 속성을 주는 경우에) 사용되며, 마침태그가 없다.


* 예:

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
    border: 1px solid black;
}

colgroup {
    display: table-column-group;
} 
</style>
</head>
<body>

<table>
  <colgroup>
    <col span="2" style="background-color:red">
    <col style="background-color:yellow">
  </colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
  <tr>
    <td>5869207</td>
    <td>My first CSS</td>
    <td>$49</td>
  </tr>
</table>

</body>
</html>

2041908818_1522261267.268.png

 

*주의: <colgroup>tag는 <table>의 child이어야하며, <caption>다음에, <thead>, <tbody>, <tfoot>,<tr>앞에 위치한다.


*팁: <colgroup>안에 있는 각 칼럼마다 다른 속성을 주려면 <colgroup>안에서 <col>tag를 사용한다.


- 영카트5 사용예: mobile/skin/item.form.skin.php -

            <div class="sit_ov_tbl">
                <table >
                <colgroup>
                    <col class="grid_2"><!--이칼럼에만 grid_2적용:간격이 좁아짐-->
                    <col>
                </colgroup>
                <tbody>
                <?php if ($it['it_maker']) { ?>
                <tr>
                    <th scope="row">제조사</th>
                    <td><?php echo $it['it_maker']; ?></td>
                </tr>
                <?php } ?>

                <?php if ($it['it_origin']) { ?>
                <tr>
                    <th scope="row">원산지</th>
                    <td><?php echo $it['it_origin']; ?></td>
                </tr>
                <?php } ?>
       --- 중간코드 생략 ---
         </tbody>
         </table>
         </div>

2041908818_1522261251.7453.png

|

댓글 3개

2018-04-15 (일) 17:05:26
정리 잘 해주셨네요 수고가 느껴집니다ㅊㅊ
좋아요..잘쓰겠습니다.감사합니다.
감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

2,788건
+
제목 글쓴이 날짜 조회
18-04-08 조회 7,449
18-04-07 조회 1.1만
18-04-07 조회 6,830
18-04-06 조회 8,964
18-04-06 조회 1만
18-04-05 조회 6,214
18-04-05 조회 6,621
18-04-05 조회 5,986
18-04-03 조회 6,702
18-03-31 조회 6,056
18-03-31 조회 6,471
18-03-31 조회 6,640
18-03-29 조회 5,416
18-03-29 조회 6,696
18-03-29 조회 7,193
18-03-27 조회 2만
18-03-27 조회 5,079
18-03-25 조회 6,178
18-03-24 조회 7,274
18-03-24 조회 6,541
18-03-24 조회 1.9만
18-03-24 조회 9,428
18-03-23 조회 6,449
18-03-23 조회 6,535
18-03-23 조회 7,605
18-03-23 조회 6,399
18-03-21 조회 7,311
18-03-21 조회 9,829
18-03-20 조회 9,180
18-03-19 조회 6,473