Page is a not externally linkable
Skier88 - 12:37 am on Feb 24, 2012 (gmt 0)
[edited by: alt131 at 5:10 am (utc) on Feb 25, 2012]
You can do that with the "background-position" property - just set the x value to 50%. Here's an example which uses the shorthand "background" property.
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>bg test</title>
<style type='text/css'>
* {margin:0; padding:0;}
body {min-height:1050px; background:#000 url
(http://i.imgur.com/j4y7L.jpg) 50% 0 no-repeat;}
p {width:700px; padding:20px; margin:20px auto;
background:rgba(255,255,255,.8);}
</style>
</head>
<body>
<p>Ipsum Lorem Lipsum Plorum</p>
</body>
</html>
[edit reason] Side Scroll [/edit]