mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
28 lines
376 B
HTML
28 lines
376 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
div.wrapper {
|
|
width: 101px;
|
|
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>
|