mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
31 lines
460 B
HTML
31 lines
460 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>You see here a scroll labeled KERNOD WEL.</title>
|
|
<style>
|
|
body {
|
|
font-size: 40px;
|
|
}
|
|
#d {
|
|
float: right;
|
|
background: green;
|
|
color: white;
|
|
}
|
|
#b {
|
|
margin: 0 0 -100px 0;
|
|
}
|
|
#c {
|
|
margin: 100px 0 0 0;
|
|
clear: both;
|
|
background-color: blue;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=d>Beetlejuice</div>
|
|
<div id=a><div id=b>Beetlejuice</div></div>
|
|
<div id=c>Beetlejuice</div>
|
|
</body>
|
|
</html>
|
|
|