Skip to content

Instantly share code, notes, and snippets.

@yatil
Created December 22, 2011 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yatil/1509786 to your computer and use it in GitHub Desktop.
Save yatil/1509786 to your computer and use it in GitHub Desktop.
TD is not TABLEs direct child.
/**
* TD is not TABLEs direct child.
*/
body {
background: #bada55;
min-height:100%;
}
table {
font-size: 40px;
color: #000;
border: 1px solid #000;
font-family: sans-serif;
}
table > td {
color: #f00; /* Can’t work as the td is NOT the direct child of the table in the DOM. */
}
<!-- content to be placed inside <body>…</body> -->
<table><td>Test</td></table>
{"view":"split","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment