blob: ab0f4e3367ef632370bd1afb4368ffffc2d9e13c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=200">
<style type="text/css">
body {
margin: 0px;
}
.upper {
background-color: #ffbbaa;
width: 200px;
height: 400px;
}
.lower {
background-color: #ffddaa;
width: 200px;
height: 400px;
}
.horizontal-link {
display:block;
width:200px;
height:30px;
margin-top:2px;
background-color:#ccccff;
}
</style>
</head>
<body>
<div class="upper"></div>
<div class="lower">
<div style="height:200px"></div>
<a href="#" class="horizontal-link">Link 1</a>
<a href="#" class="horizontal-link">Link 2</a>
</div>
</body>
</html>