CSS: Background Image
This page shows you how to use CSS background
property and image sprites.
CSS Background Attributes
background-image
url(url)
. By default, the image tiles from left to right, top to bottom. You can set thebackground-repeat
to override.background-position
offset-x offset-y
. Shift the image horizontally and vertically. The offsets are CSS Units.background-clip
border-box
(default),padding-box
, orcontent-box
. The area for the image to fill. [see CSS Box Model Tutorial]background-origin
border-box
(default),padding-box
, orcontent-box
. The start position of the image, from top left.background-repeat
repeat
(default),no-repeat
,repeat-x
,repeat-y
.background-size
width height
CSS Units, each can also beauto
, orcontain
(scale to fit, keep aspect ratio),cover
(scale to fit, don't keep aspect ratio).background-attachment
scroll
(default),fixed
. Whether the background image scrolls with the page, or fixed to window.background-color
- CSS Color Value. Color will show for the transparent area of the image.
For detail, see Colors and backgrounds#background
Example:
<div class="b47126">xyz</div>
div.b47126 { background-image: url(star_pattern.png); min-width: 270px; max-width: 270px; min-height: 270px; max-height: 270px; border: solid thick grey; }
CSS Sprite Tutorial
What is a CSS sprite?
In many websites, it needs lots of icons. For example, here's icons used by Google Plus website.

Normally, each icon is a image file. For each image file, you need a HTTP request. Too many HTTP request makes your site loading slow. (regardless of the internet bandwidth, because each HTTP request usually means a TCP connection, and starting TCP connection has latency. [see TCP/IP Tutorial for Beginner])
CSS sprites is one way to solve the many http image request problem. Instead of using many images, you combine them into one big image, and use CSS to show part of the image, the icon you want.
(Note: another solution is using CSS: Data URI Scheme, but CSS sprites is in general more efficient, when your sprites are larger (say, bigger than 16×16 pixels, or you have more than 10 icons.).)
(Note: CSS sprite is often used by highly trafficked website that needs tens of icons. It also reduces server load. For small sites, you don't need to use it.)
CSS Sprite Example
Here's a example of a (flame) icon using CSS sprite:
Here's the HTML:
<div class="flameicon"></div>
Here's the CSS:
.flameicon { width:17px; height:22px; background-image: url(i/Google_Plus_css_sprites.png); background-position: -18px -20px; }
The most important thing about sprites is positioning. Here's the steps of how to position a CSS sprite.
How to find the “background-position” for a sprite icon?
Suppose this is your image:

Suppose you want the red flame icon.
Find the coordinates of the upper-left corner and bottom-right corner of the icon you want.
For the flame icon, its upper-left corner is (18,20) and bottom-right corner is (35,42).
The offset for the icon would be background-position: -18px -20px.
The width and height for the element would be: 17px and 22px. (derived by: 35-18=17, 42-20=22.)
Sprites Gallery
Here's sample sprites used by popular sites. Many sites have more than one sprites image.







