Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
HTML5 validity of nested tables
The validator considers the following table as valid:
<!DOCTYPE html> <html> <head> <meta charset = "utf-8"> <title>Example</title> </head> <body> <table> <tbody> <tr> <td> <table> <tbody> <tr> <td>My</td> <td>Table</td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </body> </html>
Advertisements
