mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-30 01:59:29 +00:00
6b4d9b9fb0
r=sharparrow1, sr=roc
17 lines
272 B
HTML
17 lines
272 B
HTML
<html>
|
|
<style type="text/css">
|
|
div.test {
|
|
background-color: red;
|
|
margin: 5em;
|
|
-moz-border-radius: 10px;
|
|
}
|
|
|
|
div > div {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="test"><div> </div></div>
|
|
</body>
|
|
</html>
|