2020.11.03 HTML 수업 노트 - display 속성

테이블스타일  



<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<link rel="stylesheet" href="../css/public.css"> 

<style>

 table {

  border : 2px solid blue; 

  /* border-collapse  : collapse ;  separate */

  border-spacing : 10px; 

 }

  td { 

  text-align : center; 

  width : 200px; 

  height : 50px;

  }


 th {

  height : 50px;

 

 }

 caption {

  margin-top : 10px; 

  margin-bottom : 10px;  

  caption-side : bottom ; 

  font-size : 1.5em; 

 

 }

 .title {

  background : lightblue;  

 }

 .aa {

  background : lightgreen; 

 }

 

 .bb {

  background : orange; 

 }

 

 

 tr:nth-child(even){ /*구조를 나타내는 의사 클래스 /짝수 덮어쓰니까 위에 지정했던 색이 안나옴*/

  background : gray; 

 }

 tr:nth-child(odd){ /*홀수 */

  background : yellow; 

 }

 

 tr:nth-child(1) {

  background : lightblue; 

 }

 

</style>


</head>

<body>

 <table border="1"> 

 <caption>VIP리스트</caption>

  <tr class="title">

  <th>이름</th>

  <th>전화번호</th>

  </tr>

  <tr class="aa">

  <td>홍길동</td>

  <td>1234</td>

  </tr>

  <tr class="bb">

  <td>개나리</td>

  <td>1234</td>

  </tr>

  <tr class="aa">

  <td>진달래</td>

  <td>1234</td>

  </tr>

  <tr class="bb">

  <td>무궁화 </td>

  <td>1234</td>

  </tr>

  

 

 

 

 </table>




</body>

</html>


정적_상대위치 




댓글