Please enable JavaScript in your browser to load website properly.

Click here if you'd like to learn how.

css3 테이블 만드는거 질문이요

중령 눈누난나난 | 15-04-17 17:33:33 | 조회 : 1088 | 추천 : +1


<!DOCTYPE html>
<html>
<head>
    <title>테이블실습</title>
</head>
<body>
<table border="1" align="right">
  <thead>
   <tr>  
    <th>첫번째 휴일</th> <th>두번째 휴일</th>
  </tr>
</thead>
<tbody>
  <tr>
    <td colspan="2" align="center">산악 등반 예정</td>
  </tr>
  <tr>
    <th>세번째 휴일</th> <th>네번째 휴일</th>
  </tr>
  <tr>
    <td>취미활동</td> <td rowspan="2" align="center">기타</td>
  </tr>
  <tr>
    <td align="center">봉사활동</td>
  </tr>
 </tbody>
</table>
</body>
</html>

 

이게 예시인데 <table border="1" align="right"> 이명령어

tbody,thead 명령어

tr 명령어

<td colspan="2" align="center">산악 등반 예정</td> 여기서 td 명령어

 

등등 거의다 모르겠는데 자세히 설명해줄 분 있나요 ㅠㅠ

SNS로 공유하기
< 1 2 3 4 5 >