HTML Table Styling

0
6χλμ.

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
Understanding the ROUND Function
The ROUND function in Excel is used to round a number to a specified number of decimal places....
από Microsoft Excel 2024-09-03 03:30:30 0 6χλμ.
Εκπαίδευση
ECONOMICS SOLUTIONS TO THE SEMINAR AT MAKERERE HIGH SCHOOL MIGADDE
ECONOMICS SEMINAR AT MAKERERE COLLEGE MIGADDE
από Expedito 2024-07-26 07:46:42 0 5χλμ.
Computer Programming
Handling Exceptions, and Multiple Handlers
Handling Exceptions with try-except An exception is an event that disrupts the normal...
από Python for Everybody - Full University Python Course Code 2024-07-19 05:13:29 0 6χλμ.
Εκπαίδευση
P.5 AND P.6 SCIENCE REVISION
P.5 AND P.6 SCIENCE REVISION
από Expedito 2024-08-04 10:33:50 0 6χλμ.
Technology
Ransomware Attacks
Ransomware is a type of malicious software (malware) that encrypts the victim’s files or...
από Olaim 2024-07-13 08:52:05 0 6χλμ.