Important Notice:

Course Content
Heading Tag / Paragraph Tag
0/2
Horizontal Rules (HR element)
0/1
Font Element
0/1
Image Element
0/1
HTML Basic (Chapter 3) M2-R5.1
About Lesson

Colgroup:-

              <colgroup> टैग फ़ॉर्मेटिंग के लिए table में एक या अधिक columns के group को specify करता है। प्रत्येक row के लिए प्रत्येक सेल के लिए styles को repeat करने के बजाय, <colgroup> टैग पूरे कॉलम में styles को लागू करने के लिए उपयोगी है।

Note:- <colgroup> टैग किसी भी <caption> एलीमेंट के बाद <table> एलीमेंट का चाइल्ड होना चाहिए। इसका attribute span और style होता है।

<colgroup>
    <col span=”2″ style=”background-color:red”>
    <col style=”background-color:yellow”>
  </colgroup>

Colgroup:-

          The <colgroup> tag specifies a group of one or more columns in a table for formatting. The <colgroup> tag is useful for applying styles to entire columns, instead of repeating the styles for each cell, for each row.

Note:The <colgroup> tag must be a child of a <table> element, after any <caption> elements.

<colgroup>
    <col span=”2″ style=”background-color:red”>
    <col style=”background-color:yellow”>
  </colgroup>

error: Content is protected !!