Set Background For Column Group In HTML And CSS
Có thể bạn quan tâm
Next »312/920« PreviousSet background for column group in HTML and CSS
Description
The following code shows how to set background for column group.
Example
<!DOCTYPEhtml> <html> <head> <style> .myTable { border: solid 1px #DDEEEE; border-collapse: collapse; border-spacing: 0; font: normal 13px Arial, sans-serif; } .myTable thead th { background-color: #DDEFEF; border: solid 1px #DDEEEE; color: #336B6B; padding: 10px; text-align: left; text-shadow: 1px 1px 1px #FFF; } .myTable tbody td { border: solid 1px #DDEEEE; color: #333; padding: 10px; text-shadow: 1px 1px 1px #FFF; } .myTable-vertical tbody td { border-top: none; border-bottom: none; } .myTable-col-odd { background-color: #EEF7EE; } .myTable-col-even { background-color: #FFF; } </style> </head> <body> <table class="myTable myTable-vertical"> <colgroup> <col class="myTable-col-odd"></col> <col class="myTable-col-even"></col> <col class="myTable-col-odd"></col> <col class="myTable-col-even"></col> <col class="myTable-col-odd"></col> </colgroup> <thead> <tr> <th scope="col">Name</th> <th scope="col">Position</th> <th scope="col">Height</th> <th scope="col">Born</th> <th scope="col">Salary</th> </tr> </thead> <tbody> <tr> <td>A</td> <td>C</td> <td>6'11"</td> <td>2014</td> <td>$4</td> </tr> <tr> <td>B</td> <td>PG</td> <td>5'9"</td> <td>02-07-1989</td> <td>$473,604</td> </tr> <tr> <td>C</td> <td>SG</td> <td>6'5"</td> <td>2013</td> <td>$3</td> </tr> <tr> <td>D</td> <td>SG</td> <td>6'4"</td> <td>05-05-1987</td> <td>$3</td> </tr> <tr> <td>E</td> <td>PF</td> <td>6'11"</td> <td>06-21-1986</td> <td>$3</td> </tr> </tbody> </table> </body> </html>Click to view the demo
The code above generates the following result.
Next »« PreviousHome » HTML CSS Tutorial » Table » Table Style...Add mouse hover effect for each row in a ta...Add padding to table cell in HTML and CSSAdd style for even/odd table row in HTML an...Add style to row hover event in CSS in HTML...Add style to table header in HTML and CSSAssign different style to odd and even row ...Compare separate and collapse table border ...Create table with round corner in HTML and ...Highlight both column and row on hover in C...Highlight one row in table in HTML and CSSHight column with column hover CSS in HTML ...Make the first table column sticky with CSS...Mix Auto-layout Table with Flex Columns in ...Mix Column percentage and pixels width sett...Mix Fixed Table with Flex Columns in HTML a...Set Padding for table cell in HTML and CSSSet background color for table header in HT...Set background for column group in HTML and...
Set border bottom for table cell in HTML an...Set border collapse for table in HTML and C...Set border for table cell in HTML and CSSSet border for table header in HTML and CSSSet border for table in HTML and CSSSet border left for table cell in HTML and ...Set border right for table cell in HTML and...Set border space for table in HTML and CSSSet border-spacing for table in HTML and CS...Set border top for table cell in HTML and C...Set color for table cell in HTML and CSSSet color for table header in HTML and CSSSet font for table in HTML and CSSSet font size for column group in HTML and ...Set padding for table header in HTML and CS...Set style for right bottom cell in HTML and...Set style for top right table cell in HTML ...Set style per table column in HTML and CSSSet table border collapse to separate in HT...Set table caption to bottom in HTML and CSS...java2s.com | © Demo Source and Support. All rights reserved.Từ khóa » Html Colgroup Background Color
-
HTML Colgroup Tag - W3Schools
-
HTML Table Colgroup - W3Schools
-
Colgroup Background Color Not Override Tr Background Color
-
HTML:
Tag - TechOnTheNet -
: The Table Column Group Element - MDN Web Docs -
HTML |
Bgcolor Attribute - GeeksforGeeks -
HTML Colgroup Tag - Web4College
-
HTML Col, Colgroup Tutorial With Examples - O7planning
-
HTML Colgroup Tag - Dofactory
-
HTML
Tag - W3docs -
HTML Table Colgroup - ForgeGeek
-
What Is Colgroup Tag In HTML?
-
HTML - Colgroup Tag - Tutorialspoint
-
HTML Colgroup Tag | How To Specify Table Background Style?