Fixed position does not work with CSS property conversion

Is there a way to save the "Hello" element? Thus, when the user scrolls up or down, the welcome element does not move from its position.

Here is an example: http://jsfiddle.net/VR5P8/

Here is the CSS:

#hello { position: fixed; border: 1px solid #000; height: 100px; width: 100px; background-color: white; } 

Here is the wrapper code for the Hello element:

 -webkit-transform: translate(394px, 0px); 
+8
css css3 css-transforms
source share
1 answer

I believe that 'transform3d' does not work with position: fixed children solve your problem. It is a little difficult from your description and your violin to understand what you are trying to achieve.

+4
source share

All Articles