I've designed a page that relies on the background image set to a textarea form element remaining fixed if the text being typed in requires to be scrolled.
If you're not sure what I mean by that have a look at the design:
Each form element has a background image which is cut to maintain the continuity of the pattern of the paper. If the background of the textarea box scrolls then it ruins the effect.
Firefox and Netscape both allow the text in the textarea element to scroll while the background remains fixed. The problem is with IE. The background image in the textarea box scrolls with the text.
Does anyone know of a work around for this?
The only relevant CSS is the background-image property:
Note: Nothing works on the site yet, not even the form. This is the first page I've done for it. All the CSS is still currently inline and I haven't even designed a footer yet. Wan't to get this problem sorted before moving on.
Any help much appreciated. Cheers.
If you're not sure what I mean by that have a look at the design:
Each form element has a background image which is cut to maintain the continuity of the pattern of the paper. If the background of the textarea box scrolls then it ruins the effect.
Firefox and Netscape both allow the text in the textarea element to scroll while the background remains fixed. The problem is with IE. The background image in the textarea box scrolls with the text.
Does anyone know of a work around for this?
The only relevant CSS is the background-image property:
Code:
#message{
background-image:url(images/message-backer.jpg);
}
Note: Nothing works on the site yet, not even the form. This is the first page I've done for it. All the CSS is still currently inline and I haven't even designed a footer yet. Wan't to get this problem sorted before moving on.
Any help much appreciated. Cheers.