mirror of
https://github.com/servo/servo.git
synced 2025-06-13 10:54:29 +00:00
27 lines
362 B
HTML
27 lines
362 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#a {
|
|
position: absolute;
|
|
width: 128px;
|
|
height: 64px;
|
|
top: 0;
|
|
left: 0;
|
|
background: blue;
|
|
}
|
|
#b {
|
|
position: absolute;
|
|
width: 128px;
|
|
height: 128px;
|
|
top: 0;
|
|
left: 128px;
|
|
background: purple;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span id=a></span><span id=b></span></div>
|
|
</body>
|
|
</html>
|
|
|