float sollte dein freund sein
hier ein kleines quick&dirty-beispiel:
Code:
<
html>
<head>
<title>Test</title>
<style type="text/css">
#aussen{
border: #CCC 1px solid;
font-size: 14px;
padding: 5px;
}
#links{
float: left;
font-size: 14px;
padding: 0px;
margin: 0px;
}
#rechts{
float: right;
font-size: 14px;
padding: 0px;
margin: 0px;
}
a:link, a:visited, a:active{
font-weight: bold;
text-decoration: none;
color: #000;
}
a:hover{
color: #003366;
}
</style>
</head>
<body>
<div id="aussen">
<div id="links">
[
url="#"]Print[/
url]
[
url="#"]Mail[/
url]
</div>
<div id="rechts">
[
url="#"]back[/
url]
[
url="#"]...[/
url]
</div>
</div>
</body>
</
html>