HTML Table Row Height in Punjabi | Table Sizes | HTML Tutorials | Online HTML Editor on July 09, 2023 Get link Facebook X Pinterest Email Other Apps To set the height of a specific row, add the style attribute on a table row element: <!DOCTYPE html> <html> <head> <title>HTML Table Row Height</title> </head> <body> <h2>Set the height of the second row to 100 pixels</h2> <table style="width:100%"> <tr> <th>#</th> <th>Name of Student</th> <th>Class</th> </tr> <tr style="height:100px"> <td>1.</td> <td>Taranpreet Singh</td> <td>6th</td> </tr> <tr> <td>2.</td> <td>Mehakpreet Kaur</td> <td>7th</td> </tr> <tr> <td>3.</td> <td>Veerpal Kaur</td> <td>8th</td> </tr> <tr> <td>4.</td> <td>Jasmeen</td> <td>9th</td> </tr> <tr> <td>5.</td> <td>Sonia</td> <td>10th</td> </tr> <tr> <td>6.</td> <td>Jaskaran Singh</td> <td>11th</td> </tr> <tr> <td>7.</td> <td>Arshdeep Kaur</td> <td>12th</td> </tr> </table> </body> </html> table, th, td { border:1px solid black; border-collapse: collapse; } Live Demo & Try it yourself! Comments
Comments
Post a Comment