Created
February 6, 2012 15:06
-
-
Save njvack/1752582 to your computer and use it in GitHub Desktop.
HTML nesting test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
<title>Test</title> | |
</head> | |
<body> | |
<div style="width: 500px; background-color:#F33;"> | |
This is the outer div | |
<div style="background-color: #FAA; padding: 10px; margin:10px;"> | |
This is the inner div | |
<table cellpadding="0" cellspacing="0" style="width: 100%"> | |
<tr> | |
<td style="border: 1px solid blue; background-color:#FEE;">Here is my td</td> | |
</tr> | |
</table> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment