HTML Table Background Color
Có thể bạn quan tâm
This page contains HTML table background color code. These are HTML codes for specifying or changing the background color of your tables within your blog or web page.
In HTML, table background color is specified using Cascading Style Sheets (CSS). In particular, you use the CSS background-color property to set the background color for your table. You can also specify a separate background color for your table rows and table cells if you like.
Background Color for the Whole Table
To change the background color of the whole table, use the background-color property against the table tag.
<table style="width:100%;text-align:left;background-color:gold;"> <tr> <th>Table Header</th> <th>Table Header</th> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> </table>View Output
Background Color of a Table Row
To change the background color of a table row, you apply the same code, but to the table row in question (i.e. the tr tag).
Here we also use border-collapse:collapse; to collapse the border.
<table style="width:100%;text-align:left;border-collapse:collapse;background-color:gold;"> <tr style="background-color:yellowgreen;color:white;"> <th>Table Header</th> <th>Table Header</th> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> </table>View Output
Background Color of a Single Cell
To change the background color of a single table cell, you apply the same code, but to the table cell in question (i.e. the td tag or the th tag, depending on whether the cell is a normal table data row or part of a table header).
<table style="width:100%;text-align:left;background-color:gold;"> <tr> <th>Table Header</th> <th>Table Header</th> </tr> <tr> <td>Table cell</td> <td style="background-color:yellowgreen;color:white;">Table cell</td> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> </table>View Output
Using Classes
The above examples use inline style sheets to set the CSS properties. This is only because it makes it easier for demonstration purposes. I strongly encourage you to use a CSS class defined in an external style sheet to set your styles. Even embedded style sheets are usually better than inline.
Here's an example of setting the table's background color and other properties using a CSS class.
<!DOCTYPE html> <html> <head> <title>Example</title> <!-- CSS --> <style> .myTable { width: 100%; text-align: left; background-color: lemonchiffon; border-collapse: collapse; } .myTable th { background-color: goldenrod; color: white; } .myTable td, .myTable th { padding: 10px; border: 1px solid goldenrod; } </style> </head> <body> <!-- HTML --> <table class="myTable"> <tr> <th>Header</th> <th>Header</th> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> <tr> <td>Table cell</td> <td>Table cell</td> </tr> </table> </body> </html>View Output
Từ khóa » Html Table Set Column Background Color
-
HTML Col Tag - W3Schools
-
Can I Color Table Columns Using CSS Without Coloring Individual Cells?
-
How To Change The Background Color Of An HTML Table - ThoughtCo
-
Table Colors & Background : MGA - Web Development Tutorials
-
Table Background Color
-
Coloring CSS Tables - HTML
-
HTML Table Basics
-
How To Easily Set The Table Background Color - WpDataTables
-
HTML |
Bgcolor Attribute - GeeksforGeeks How To Set Background Color In The First Column Of A Table (HTML ...
Modifying Table Background Color - Scripting Master
Background Color Based On Cell Value In HTML Table
Setting Table Colors - Documentation For Action Request System 21.3
Table Visualization — Pandas 1.4.3 Documentation
Copyright © 2022 | Thiết Kế Truyền Hình Cáp Sông Thu