mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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;
|
|
}
|