Hello chrarisma44,
Why are your anchors wrapped in block level paragraph tags if you want your anchors inline...which is their normal behaviour.
I'm not saying that's invalid, it's just opposite what you're trying to do.
Look at it this way -
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
html, body {
margin: 0;
background: #fc6;
}
#container {
width: 800px;
margin: 30px auto;
padding: 200px 0 300px;
background: #fff;
box-shadow: 0 0 20px #8493A6;
overflow: auto;
}
</style>
</head>
<body>
<div id="container">
<a href="#" class="css-button">Download</a>
<a href="#" class="css-button">Download</a>
<a href="#" class="css-button">Download</a>
<a href="#" class="css-button">Download</a>
<a href="#" class="css-button">Download</a>
<!--end container--></div>
</body>
</html>