Det här är ett sätt:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>...</title>
<style type="text/css">
#container {
position: relative;
top: 20px;
width: 500px;
margin: auto;
border: 1px solid #000;
background-color: #ccc;
padding: 10px;
}
#container p {
margin: 0px;
padding: 0px;
}
#container #menu {
position: relative;
top: -15px;
border-bottom: 1px solid #888;
}
#container #menu h1 {
display: inline;
position: relative;
top: -15px;
margin: 0px;
}
#container #menu p {
position: absolute;
top: 0px;
right: 20px;
padding: 0px;
margin: 10px 0px 0px 0px;
}
#container #menu p a {
margin: 0px 20px;
}
</style>
</head>
<body>
<div id="container">
<div id="menu">
<h1>Rubrik</h1>
<p><a href="#">Nånting</a><a href="#">Nånting annat</a></p>
</div>
<p>Lite text</p>
</div>
</body>
</html>
