HTML CSS examples for CSS Widget:Table Row
Split table row into two rows
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!--from w w w .j a v a2 s . co m--> <body> <table border="1" width="100%"> <tbody> <tr> <td>Lorem</td> <td>Lorem</td> </tr> <tr> <td colspan="2">Lorem </td> </tr> </tbody> </table> </body> </html>