aaronoafc
02-17-2012, 11:12 AM
This never sticks for some reason! Could someone please tell me what to write in the CSS to get the three "buttons" into the centre of the page?
html
<!doctype html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<a href="#" class="button green">Button</a>
<a href="#" class="button blue">Button</a>
<a href="#" class="button grey">Button</a>
</body>
</html>
CSS
body {
margin-right:auto;
margin-left:auto;
}
html
<!doctype html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<a href="#" class="button green">Button</a>
<a href="#" class="button blue">Button</a>
<a href="#" class="button grey">Button</a>
</body>
</html>
CSS
body {
margin-right:auto;
margin-left:auto;
}