0

I have a problem with having multiple backgrounds on the body of my page. Here's the css:

html, body {
 margin: 0px;
 padding: 0px;
 width: 100%;
 background-image: url(../img/top-left.png), url(../img/top-right.png);
 background-position: top-left, top-right;
 background-repeat: no-repeat;
}

However, this doesn't work. Can someone help me? Thanks!

asked Apr 11, 2012 at 9:56

1 Answer 1

5

It's not top-left, top-right but top left, top right.

answered Apr 11, 2012 at 9:58
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.