HTML Table Styling

0
3Кб

HTML Table Styling

You can use CSS to style HTML tables and their elements, providing greater flexibility and customization options. Here are some common styling techniques:

Table-Level Styling

  • Border:
    CSS
    table {
      border: 1px solid #ccc;
    }
    
  • Width:
    CSS
    table {
      width: 80%;
    }
    
  • Background Color:
    CSS
    table {
      background-color: #f2f2f2;
    }
    

Header and Data Cell Styling

  • Font:
    CSS
    th {
      font-weight: bold;
      text-align: center;
    }
    
    td {
      text-align: left;
    }
    
  • Background Color:
    CSS
    th {
      background-color: #4CAF50;
      color: white;
    }
    
  • Padding:
    CSS
    th, td {
      padding: 8px;
    }
    

Striped Rows

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

Hover Effects

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

Example

HTML
<table style="border: 1px solid #ccc; width: 80%;">
  <thead>
    <tr>
      <th style="background-color: #4CAF50; color: white;">Product</th>
      <th style="background-color: #4CAF50; color: white;">Price</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Product A</td>
      <td>$100</td>
    </tr>
    <tr style="background-color: #f2f2f2;">
      <td>Product B</td>
      <td>$200</td>
    </tr>
  </tbody>
</table>

Note: For more advanced styling, consider using CSS frameworks like Bootstrap or Materialize, which provide pre-built styles and components for tables and other elements.

By combining these techniques, you can create visually appealing and informative HTML tables that enhance the user experience of your web applications.

Like
2
Поиск
Категории
Больше
Technology
Management Information Systems (MIS)
Management Information Systems (MIS) are integrated systems designed to support management and...
От Business Information Systems (BIS) Course 2024-08-01 16:58:59 0 3Кб
Business
Running a Successful Business
Beyond Profits to Building a Strong Foundation In the world of business, success is often...
От ALAGAI AUGUSTEN 2024-08-03 15:49:40 0 3Кб
Technology
Understanding the AVERAGE Function
The AVERAGE function in Excel is used to calculate the arithmetic mean of a range of numbers....
От Microsoft Excel 2024-09-03 03:20:32 1 3Кб
Biology
UACE BIOLOGY EDUCAN MOCK 2024
UACE BIOLOGY EDUCAN MOCK 2024
От Landus Mumbere Expedito 2024-08-11 11:48:05 0 3Кб
Образование
The Chisholm Trail
От Modern American History 2024-08-02 16:32:50 0 3Кб