Search
 
SCRIPT & CODE EXAMPLE
 

HTML

Table row indexing

body{
  counter-reset: Serial;           /* Set the Serial counter to 0 */
}

table{
  border-collapse: collapse;
}

tr td:first-child:before{
  counter-increment: Serial;      /* Increment the Serial counter */
  content:counter(Serial);        /* Display the counter */
}
Comment

Table row indexing

<table border="1">
  <thead>
    <tr>
      <th>Automatic Serial number</th>
      <th>Column 1</th>
      <th>Column 2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td></td>
      <td>Column 1</td>
      <td>Column 2</td>
    </tr>
    <tr>
      <td></td>
      <td>Column 1</td>
      <td>Column 2</td>
    </tr>
    <tr>
      <td></td>
      <td>Column 1</td>
      <td>Column 2</td>
    </tr>
    <tr>
      <td></td>
      <td>Column 1</td>
      <td>Column 2</td>
    </tr>
    <tr>
      <td></td>
      <td>Column 1</td>
      <td>Column 2</td>
    </tr>
    <tr>
      <td></td>
      <td>Column 1</td>
      <td>Column 2</td>
    </tr>
    <tr>
      <td></td>
      <td>Column 1</td>
      <td>Column 2</td>
    </tr>
    <tr>
      <td></td>
      <td>Column 1</td>
      <td>Column 2</td>
    </tr>
  </tbody>
</table>
 Run code snippet
Comment

PREVIOUS NEXT
Code Example
Html :: toptal html interview questions 
Html :: close copy with html 
Html :: Change Default Message Of Required Field Input Popover 
Html :: wordpress add the html to the content by functoin.php 
Html :: htaml p 
Html :: webforms validate radio buttons 
Html :: disable autocomplete html input 
Html :: how to make a head tag in html into a child element 
Html :: html link without opening new tab 
Html :: html para pdf 
Html :: how to redirect to another html page in html in 30 seconds 
Html :: get all values in hidden field with the same name 
Html :: theme my login/logout shortcode 
Html :: python convert html table to text 
Html :: step 47 freecodecamp nutrition table 
Html :: when I refresh my page it comes back to the same place html 
Html :: hightcharts font 
Html :: adminLTE infoboxes 
Html :: how to change a single word in a whole paragraph html 
Html :: javascript toggle div 
Html :: put picture in iphone frame html 
Html :: what is BETH? 
Html :: html entity 
Html :: html how to nest 2 tags 
Html :: html css slider 
Html :: html anchor in samae page without url 
Html :: hover message html 
Html :: @click event disabled source 
Html :: image add link to another page 
Html :: page html vierge 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =