뉴비코더
나는 코딩뉴비
뉴비코더
전체 방문자
오늘
어제
  • 분류 전체보기 (91)
    • 개발입문뉴비 - 국비지원 ( Front End ) (91)
      • html (26)
      • css (58)
      • javascript (6)
      • Library React.js (0)
    • FrontEnd ( Self-study ) (0)
      • html5, CSS3 (0)
      • Vanilla JS (0)
      • Clone Code (0)
    • BackEnd ( self-study ) (0)
      • Library Node.js (0)
      • Python (0)
      • Go (0)

블로그 메뉴

  • 홈
  • 방명록

공지사항

인기 글

태그

  • position
  • Javascript 배열
  • js event object
  • js 이벤트객체
  • ol
  • webfont
  • boxmodel
  • psuedo-class
  • HTML5
  • css3
  • Margin
  • 국비지원
  • 마크업
  • 코딩진화
  • 웹개발
  • parseInt
  • 클론코딩
  • js 생성 함수
  • padding
  • js event
  • transform
  • JavaScript
  • Transition
  • boxmodeling
  • 가상클래스
  • UL
  • 프론트엔드
  • 하이퍼링크
  • 웹개발입문
  • HTML

최근 댓글

최근 글

티스토리

hELLO · Designed By 정상우.
뉴비코더

나는 코딩뉴비

[2021/12/10]국비지원-HTML5 코딩툴 기본학습 4-(2) table
개발입문뉴비 - 국비지원 ( Front End )/html

[2021/12/10]국비지원-HTML5 코딩툴 기본학습 4-(2) table

2021. 12. 20. 00:41

rowgroup : 행 그룹 짓기

colgroup : 열 그룹 짓기

scope = row : 행 (ㅡ)

scope = col : 열 (ㅣ)

id : 소속명

headers : 데이터의 소속 범위

caption : 웹접근성을 위해 반드시 붙여야 할 표 타이틀

​

<table border = "1" rules = "groups"> : 표 선은 1px, 그룹으로 묶는 규칙

 


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>table</title>
</head>
<body>
    <h2>신용등급</h2>
    <h3>국내외 신용등급 및 현황</h3>
    <h4>국내외 신용등급 보유현황</h4>
    <!-- 내용 상 가로 : thead, tfoot, tbody
         내용 상 세로 : colgroup -->
    <table border="1", rules="groups">
        <caption>국내외 신용등급 보유현황</caption>
        <colgroup>
            <col>
        </colgroup>
        <colgroup>
            <col>
            <col>
            <col>
        </colgroup>
        <colgroup>
            <col>
            <col>
            <col>
        </colgroup>
        <thead>
            <tr>
                <th scope="col" id="division">구분</th>
                <th scope="col" colspan="3" id="domestic">국내신용등급</th>
                <th scope="col" colspan="3" id="international">국제신용등급</th>
            </tr>
        </thead>
        <!-- tfoot 없음 -->
        <tbody>
            <tr>
                <th scope="row" id="agency">평가기관</th>
                <td headers="domestic agency">한국기업평가</td>
                <td headers="domestic agency">한국신용평가</td>
                <td headers="domestic agency">나이스신용평가</td>
                <td headers="international agency">Moody's</td>
                <td headers="international agency">S&P</td>
                <td headers="international agency">Fitch</td>
            </tr>
            <tr>
                <th scope="row" id="credit">신용등급</th>
                <td headers="domestic credit">AAA</td>
                <td headers="domestic credit">AAA</td>
                <td headers="domestic credit">AAA</td>
                <td headers="international credit">Aa2</td>
                <td headers="international credit">AA</td>
                <td headers="international credit">AA-</td>
            </tr>
            <tr>
                <th scope="row" id="outlook">등급전망</th>
                <td headers="domestic outlook">안정적</td>
                <td headers="domestic outlook">안정적</td>
                <td headers="domestic outlook">안정적</td>
                <td headers="international outlook">Stable</td>
                <td headers="international outlook">Stable</td>
                <td headers="international outlook">Stable</td>
            </tr>
        </tbody>
    </table>
</body>
</html>

 

 


더보기

이 수업 좀 짜증나는 게

정부에서 공지 내려왔다면서 하는 얘기가
수업 중에 캠 풀타임 on, 가상배경 금지, 자리이동 금지
(ex. 집이 영 아니라서 노트북 들고 카페에서 청강 = 금지)
이런 게 노동부 지침으로 내려왔다는데

... 가상배경 금지...
방 공개..
집 공개....
사생활 침해 기분 무엇..?

저작자표시 비영리 변경금지 (새창열림)
    '개발입문뉴비 - 국비지원 ( Front End )/html' 카테고리의 다른 글
    • [2021/12/13]국비지원-HTML5 코딩툴 기본학습 5-(1), (2) 로그인 양식, 검색 양식
    • [2021/12/12] 07~10까지의 태그 구현 복습
    • [2021/12/10]국비지원-HTML5 코딩툴 기본학습 4-(1) table
    • [2021/12/09]국비지원-HTML5 코딩툴 기본학습-3-(4) ul 4
    뉴비코더
    뉴비코더
    FrontEnd 지망 - 코딩뉴비를 위한(?), 뉴비에 의한, 뉴비의 블로그 - 코딩뉴비의 코딩 학습 기록 - 첨가물 : 약간의 불평/사족

    티스토리툴바