I'm trying to keep the background of my HTML document fixed in the upper left corner, so that when a user scrolls through the page, they only see parts of it.
Here's the code I'm using:
<body style="background-image: url(background.png);
background-repeat:no-repeat;
background-attachment:fixed;
width:1400px;
height:2000px;">
It works correctly in browsers, but in the software I'm using — MS Expression Web 4 — the image moves horizontally with the window instead of staying fixed. It remains stationary vertically though.
So, is the issue in my code (which Chrome seems to interpret correctly) or is it a bug in Expression Web 4?
Thank you in advance :)