1body {
2 background-position: center;
3 background-repeat: no-repeat;
4 background-size: cover;
5}
1html {
2 height: 100%;
3}
4body {
5 color: #999;
6 background: url('../images/background/main_bg.jpg') no-repeat center center fixed;
7 font-family: 'Roboto', sans-serif;
8 -webkit-background-size: cover;
9 -moz-background-size: cover;
10 -o-background-size: cover;
11 background-size: cover;
12}
1<head>
2<style>
3#example1{
4 border: 2px solid black;
5 padding: 100px;
6 background: url(mountain.jpg);
7 background-repeat: no-repeat;
8 background-size: 100% 100%;
9}
10</style>
11</head>
12<body>
13<div id="example1">
14</div>
15</body>
1.wrapper{background: url('/assets/64531/green_suburb.jpg') no-repeat center center fixed;
2-webkit-background-size: cover;
3-moz-background-size: cover;
4-o-background-size: cover;
5background-size: cover;}