CSS background Property

CSS background Property

CSS background Property

The background property in CSS is a shorthand for setting multiple background-related properties in one declaration. It allows you to define background color, image, position, size, repeat, origin, clip, and attachment all at once.

1. Syntax

selector { background: [color] [image] [position] / [size] [repeat] [attachment] [clip] [origin]; }

✅ The order of values matters, but some can be omitted.

2. Components of the background Property

PropertyDescription
background-colorDefines the background color.
background-imageSets an image as the background.
background-positionDefines the position of the image.
background-sizeSpecifies the image size (cover, contain, etc.).
background-repeatControls image repetition (repeat, no-repeat).
background-attachmentDefines if the background scrolls or stays fixed.
background-clipDefines how far the background extends.
background-originDefines where the background starts (border-box, padding-box, content-box).

3. Example – Full Background Shorthand

.box { width: 500px; height: 300px; background: linear-gradient(to right, red, blue) url("image.jpg") no-repeat center/cover fixed border-box; }

✅ This applies:

  • A gradient and image

  • No-repeat behavior

  • Centered position

  • Cover size

  • Fixed attachment

  • Border-box clip

4. Example – Basic Background Usage

.box { background: lightblue; }

Only sets background color.

.box { background: url("background.jpg") no-repeat center/cover; }

Sets background image, position, and size.

5. Best Practices

Use background: color image position / size repeat attachment clip origin; for full control.
Use background-size: cover; for full-width backgrounds.
Combine background-attachment: fixed; for parallax effects.

Soeng Souy

Soeng Souy

Website that learns and reads, PHP, Framework Laravel, How to and download Admin template sample source code free.

Post a Comment

CAN FEEDBACK
close