mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-17 05:07:10 +00:00
20 lines
265 B
HTML
20 lines
265 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#block1, #block2 {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
#margin-only {
|
|
height: 40px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="block1"></div>
|
|
<div id="margin-only"></div>
|
|
<div id="block2"></div>
|
|
</body>
|
|
</html>
|