Striped Tables(스트라이프 테이블)

Striped Tables(스트라이프 테이블)

 

First Name Last Name Savings

Peter Griffin $100

Lois Griffin $150

Joe Swanson $300

For zebra-striped tables, use the nth-child() selector and add a background-color to all even (or odd) table rows:

 

Example

tr:nth-child(even) {background-color: #f2f2f2}

 

<!DOCTYPE html>

<html>

<head>

<style>

table {

    border-collapse: collapse;

    width: 100%;

}

 

th, td {

    text-align: left;

    padding: 8px;

}

 

tr:nth-child(even){background-color: #f2f2f2}

</style>

</head>

<body>

 

<h2>Striped Table</h2>

<p>For zebra-striped tables, use the nth-child() selector and add a background-color to all even (or odd) table rows:</p>

 

<table>

  <tr>

    <th>First Name</th>

    <th>Last Name</th>

    <th>Points</th>

  </tr>

  <tr>

    <td>Peter</td>

    <td>Griffin</td>

    <td>$100</td>

  </tr>

  <tr>

    <td>Lois</td>

    <td>Griffin</td>

    <td>$150</td>

  </tr>

  <tr>

    <td>Joe</td>

    <td>Swanson</td>

    <td>$300</td>

  </tr>

  <tr>

    <td>Cleveland</td>

    <td>Brown</td>

    <td>$250</td>

  </tr>

</table>

 

</body>

</html>

789de082eda191a16b29225dae1ca3ac_1489070202_4992.png

|
댓글을 작성하시려면 로그인이 필요합니다.

퍼블리셔팁

퍼블리싱과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
CSS 8년 전 조회 1,704
CSS 8년 전 조회 2,481
CSS 8년 전 조회 2,129
CSS 8년 전 조회 2,394
CSS 8년 전 조회 2,405
CSS 8년 전 조회 2,275
CSS 8년 전 조회 2,441
CSS 8년 전 조회 2,546
CSS 9년 전 조회 3,108
CSS 9년 전 조회 2,733
CSS 9년 전 조회 2,606
CSS 9년 전 조회 2,071
CSS 9년 전 조회 2,113
CSS 9년 전 조회 2,333
CSS 9년 전 조회 1,769
CSS 9년 전 조회 2,426
CSS 9년 전 조회 1,953
CSS 9년 전 조회 2,392
CSS 9년 전 조회 2,437
CSS 9년 전 조회 2,424
CSS 9년 전 조회 2,246
CSS 9년 전 조회 1,985
CSS 9년 전 조회 2,462
CSS 9년 전 조회 1,798
CSS 9년 전 조회 1,887
CSS 9년 전 조회 1,989
CSS 9년 전 조회 2,618
CSS 9년 전 조회 2,678
CSS 9년 전 조회 2,048
CSS 9년 전 조회 2,528