[{ALLOW view All}]
[{ALLOW edit Authenticated}]

[Frameworks Comparison at usablica.github.io|http://usablica.github.io/front-end-frameworks/compare.html]

[CSS 2.0|http://www.w3.org/TR/1998/REC-CSS2-19980512/cover.html]

[CSS 2.1|http://www.w3.org/TR/CSS21/]

[Selektors|http://www.w3.org/TR/CSS21/selector.html]

!Examples

Assign all child elements table, tr and td of a parent element with class="addrForm" the specified styles:
{{{
.addrForm table,
.addrForm tr,
.addrForm td {
	margin: 0;
	padding: 0;
	background-color: #F00;
	}
}}}

Assign style to any table which is a child of a parent with id="addrOutput"
{{{
#addrOutput table {
	border-collapse: collapse;
	}
}}}