mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-06 09:29:35 +00:00
20 lines
255 B
HTML
20 lines
255 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.separator {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
#bfc {
|
|
height: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="separator"></div>
|
|
<div id="bfc"></div>
|
|
<div class="separator"></div>
|
|
</body>
|
|
</html>
|