Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS thead repeatation problem while printing

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #248951
    surabhivin
    Participant

    Hello ,

    I am trying to repeat <thead> on every page while printing but as one column increase in it ,it does not repeated on second page .Here is my code
    <!–css code –>
    <style>

    @media print {
    thead { display: table-header-group;}
    }
    </style>
    <!–css code –>
    <!–html code –>
    <table id=”tbl_head” width=”100%”>
    <thead>
    <tr>
    <th style=”border-bottom:2px solid #999;”>

      &lt;!--Customize Header --&gt;
    
      &lt;table width="100%"&gt;
      &lt;tbody&gt;
          &lt;tr&gt;
              &lt;td colspan="3"&gt;
                &lt;h4 style="text-align: center; font-weight: normal; background: #ccc none repeat scroll 0% 0%; font-size: 16px; padding: 8px 0px; margin: 2px 0 0 0; border: 1px solid #000;"&gt;FULLY COMPUTERISED LAB&lt;/h4&gt;
              &lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td style="text-align:left;"&gt;
                <span style="text-align: left;margin-bottom: 0px;font-size: 22px;font-weight:bold">Test</span>
                <span style="font-size: 12px;margin-top: 5px">Test Centre</span>
              &lt;/td&gt;
              &lt;td style="text-align:left;"&gt;
                <span style="font-size:18px;margin-bottom: 2px;margin-top: 2px">Dr. sharma</span>
                <span style="margin-top:2px">M.D.</span>
              &lt;/td&gt;
              &lt;td style="text-align:left;"&gt;
                <span style="font-size:10px">&lt;b&gt;Address&lt;/b&gt;</span>
                <span style="font-size:10px">&lt;b&gt;Phone: 0731-787878, Mobile: &lt;/b&gt;</span> 
                <span style="font-size:10px">&lt;b&gt;Email: [email protected]&lt;/b&gt;</span>
                <span style="font-size:10px">&lt;b&gt;Time: 7:30am to 10pm; Sunday 8am to 1pm&lt;/b&gt;</span>
              &lt;/td&gt; 
          &lt;/tr&gt;
      &lt;/tbody&gt;
    
      &lt;/table&gt; 
    
    &lt;!--Customize Header --&gt;
          &lt;/th&gt;
    
         &lt;/tr&gt;
        &lt;/thead&gt;
        &lt;tbody&gt;
        &lt;tr&gt;
          &lt;td&gt;
           &lt;!-- some other code here --&gt;
         &lt;/td&gt;
       &lt;/tr&gt;
     &lt;/tbody&gt;
    

    </table>
    <!–html code –>

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.