How to create fixed background image tiled from the left?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dagam3rz
    New Member
    • Jul 2010
    • 11

    How to create fixed background image tiled from the left?

    How to create fixed background image tiled from the left?

    background: url($image_file ) left top fixed;
    The code above fixed and tiled the image but the tiling starts from the center.

    Thanks...
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    Works for me .

    Comment

    • hellodipak
      New Member
      • Jun 2010
      • 26

      #3
      Attribute orders should not matter, but it's worth checking. The code is missing file extension:

      background: url(image_file. jpg) fixed left top;

      Comment

      Working...