mirror of
https://github.com/servo/servo.git
synced 2025-06-16 12:24:29 +00:00
27 lines
369 B
HTML
27 lines
369 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
#a {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: 128px;
|
|
height: 64px;
|
|
background: blue;
|
|
}
|
|
#b {
|
|
display: inline-block;
|
|
width: 128px;
|
|
height: 128px;
|
|
background: purple;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span id=a></span><span id=b></span></div>
|
|
</body>
|
|
</html>
|
|
|