HTML <colgroup> with bgcolor Attribute
You are Here:
HTML <colgroup> with bgcolor Attribute
The bgcolor
attribute specifies the background color of each cell related to a <colgroup> element.
Warning: The bgcolor
attribute is deprecated and is no longer recommended.
Tips: To apply background color for the content related to a <colgroup> element, try any of the following methods:
- Using style global attribute: <colgroup style="background-color: green">.
- Using CSS background property.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<table>
<colgroup bgcolor="#FF0000">
</colgroup>
<tr>
<th>Roll No</th>
<th>Name</th>
<th>Mark</th>
</tr>
<tr>
<td>1</td>
<td>Brendan</td>
<td>90</td>
</tr>
<tr>
<td>2</td>
<td>Eich</td>
<td>92</td>
</tr>
</table>
</body>
</html>
Attribute Values
color | value |
---|---|
red or #FF0000. | |
maroon or #800000. | |
purple or #800080. | |
fuchsia or #FF00FF. | |
green or #008000. | |
lime or #00FF00. | |
olive or #808000. | |
navy or #000080. | |
blue or #0000FF. | |
teal or #008080. | |
aqua or #00FFFF. | |
white or #000000. | |
gray or #808080. | |
silver or #C0C0C0. | |
black or #000000. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.