Category Archives: CSS

Arranging Background Images

Background Image – Repeated
{background-image:url(‘bgimage.jpg’);
background-repeat: repeat}
Background Image – No Repeat
{background-image: url(‘bgimage.jpg’);
background-repeat: no-repeat}
Background Image – Only Vertically
{background-image:url(‘bgimage.jpg’);
background-repeat: repeat-y}
Background Image – Only Horizontally
{background-image:url(‘bgimage.jpg’);
background-repeat: repeat-x}