I am trying to use background-repeat:repeat; Code (markup): in unison with... background-position:bottom center; background-attachment:fixed; Code (markup): Basically, I only want the background to repeat horizontally, and not tile vertically. How can I do this? For example: _______________ | | | | | |************| ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ not: _______________ |************| |************| |************| |************| |************| |************| ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
use background-repeat:repeat-x; HTML: to repeat horizontally use this to repeat vetically background-repeat:repeat-y; HTML: