Jump to content

IE 11 mouse wheel issue with position:fixed images


more

Recommended Posts

Hi

 

I'm new in the forum but I already consult the W3Schools website since about 3 years.
Meanwhile I have a problem and I can not find the solution

Also with this problem, I have seen some pages but no soluctions for IE11 and mobile IE...
https://connect.microsoft.com/IE/feedback/details/795070/mouse-wheel-issue-with-position-fixed-images
http://joaocouto-espinho.com/html.html#mais-um-problema-ie

 

Below, can see my CSS... For my background:url it works well in all major browsers but naturally with exception for IE...

html {    background-image: linear-gradient(#648CA6,#9EBECD,#648CA6);}body {    background: url(../img-wild/serra-peneda-geres.jpg) no-repeat fixed top center;    overflow: auto;    height: 100%;}

 

Noted that, if I change my html element on CSS repeating code on height and overflow I solve the problem for IE11 but it transfer the problems for the other browsers...

html {    background-image: linear-gradient(#648CA6,#9EBECD,#648CA6);    height: 100%;    overflow: auto;}body {    background: url(../img-wild/serra-peneda-geres.jpg) no-repeat fixed top center;    height: 100%;    overflow: auto;}
Edited by more
Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...