зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
236 B
CSS
18 строки
236 B
CSS
|
body > *
|
||
|
{
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
overflow: auto;
|
||
|
border: thick solid purple;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
body > * > *
|
||
|
{
|
||
|
margin: 10px;
|
||
|
border: medium solid green;
|
||
|
background: yellow;
|
||
|
width: 200px;
|
||
|
height: 200px;
|
||
|
}
|