Soure HTML Design Table - Red Orange.

Mẫu thiết kế bảng(table) HTML màu đỏ cam, kèm theo hiệu ứng chuột tô màu khi dòng dữ liệu được con trỏ chuột(mouse) trỏ vào.

Image Design:



Demo:

Firstname Lastname Points
Jill Smith 50
Eve Jackson 94
John Doe 80


HTML Source:


<!DOCTYPE html>
<html>
<head>
<style>
/* Table Styles */

table {

}

table.table_style_01
{
  border-spacing: 0;
  border-collapse: collapse;
  border: 2px solid #FF0000;   
  background-color: #FFA3A3;
}

table.table_style_01 td, table.table_style_01 th
{
  border: 1px solid #FF0000;
  padding: 0.5ex 0.5ex; 
}

table.table_style_01 td {
  background-color: #FFF;
}

table.table_style_01 tr:hover td {
  background-color: #FFE0E0;
}

</style>
</head>
<body>

<table style="width:100%" class="table_style_01">
<tr>
  <th>Firstname</th>
  <th>Lastname</th>       
  <th>Points</th>
</tr>
<tr>
  <td>Jill</td>
  <td>Smith</td>       
  <td>50</td>
</tr>
<tr>
  <td>Eve</td>
  <td>Jackson</td>       
  <td>94</td>
</tr>
<tr>
  <td>John</td>
  <td>Doe</td>       
  <td>80</td>
</tr>
</table>

</body>
</html>



Designer: +Bui Ngoc Son




No comments:

Post a Comment