Html / Css, Getting 2 Backgrounds In Each Side To Adjust With The Wrapper
im trying to have 2 seperate backgrounds on my website, one in each side, that adjust acording to screen size like on ownedcore.com where the sides adjust with the mid wrapper HTML
Solution 1:
That site looks like it works with 2 backgrounds on 2 containers like this:
<body><divid="A"><divid="B"><divid="wrapper"></div></div></div></body>
then css:
#A {
background: url(...) top right no-repeat;
}
#B {
background: url(...) top left no-repeat;
}
#wrapper {
width: 700px;
margin: 0 auto;
}
Post a Comment for "Html / Css, Getting 2 Backgrounds In Each Side To Adjust With The Wrapper"