HTML Table Styling

0
11كيلو بايت

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
البحث
الأقسام
إقرأ المزيد
Computer Programming
HTML forms
Here's a simple HTML form structure that includes a text input field, a submit button, and a...
بواسطة HTML PROGRAMMING LANGUAGE 2024-10-01 09:29:09 0 11كيلو بايت
Technology
How Technology is Reshaping Our World
From Smart Homes to Smart Cities: Technology is Reshaping Our World. What Tech Innovation Excites...
بواسطة ALAGAI AUGUSTEN 2024-07-23 17:35:18 0 11كيلو بايت
التعليم
S4 CHEMISTRY
https://acrobat.adobe.com/id/urn:aaid:sc:EU:c0424112-e1de-4038-84a6-6743ec084d39
بواسطة Landus Mumbere Expedito 2024-07-24 19:24:46 0 9كيلو بايت
Physics
WAKISSHA UACE PHYSICS PAPER 2 2024
WAKISSHA UACE PHYSICS PAPER 2 2024
بواسطة Landus Mumbere Expedito 2024-08-01 18:31:28 1 13كيلو بايت
التعليم
Lunch Atop A Skyscraper
بواسطة Modern American History 2024-08-02 16:39:22 0 11كيلو بايت
Tebtalks https://forum.tebtalks.com