CSS Tables

CSS Tables

The look of an HTML table can be greatly improved with CSS:
<style>
#customers {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

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

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}
</style>
</head>
<body>

<table id="customers">
  <tr>
    <th>Имя</th>
    <th>Фамилия</th>
    <th>Номер телефона</th>
  </tr>
  <tr>
    <td>Петя</td>
    <td>Гришечкин</td>
    <td>22211873</td>
  </tr>
  <tr>
    <td>Аня</td>
    <td>Василькова</td>
    <td>27645748</td>
  </tr>
  <tr>
    <td>Гоша</td>
    <td>Мармеладов</td>
    <td>28765498</td>
  </tr>
  <tr>
</table>
Имя Фамилия Номер телефона
Петя Гришечкин 22211873
Аня Василькова 27645748
Гоша Мармеладов 28765498

Комментарии

Популярные сообщения из этого блога

Code week

CCS Position

CSS Links