mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
6b4d9b9fb0
r=sharparrow1, sr=roc
16 lines
240 B
HTML
16 lines
240 B
HTML
<html>
|
|
<style type="text/css">
|
|
div.test {
|
|
background-color: red;
|
|
margin: 5em;
|
|
}
|
|
|
|
div > div {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="test"><div> </div></div>
|
|
</body>
|
|
</html>
|