mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
375 B
HTML
28 lines
375 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
div.wrapper {
|
|
width: 80px;
|
|
height: 30px;
|
|
}
|
|
div.a, div.b {
|
|
height: 20px;
|
|
display: inline-block;
|
|
}
|
|
div.a {
|
|
width: 20px;
|
|
background: blue;
|
|
}
|
|
div.b {
|
|
width: 80px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<div class="a"></div> <div class="b"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|