mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
18 lines
236 B
CSS
18 lines
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;
|
|
}
|