blob: e1bfa6fff1ca790cfe4003f4c28c86c10c9f3e9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<style type="text/css">
div.test {
background-color: red;
margin: 5em;
border-radius: 10px;
}
div > div {
background-color: green;
}
</style>
<body>
<div class="test"><div> </div></div>
</body>
</html>
|