
- CSS Tutorial
- CSS - Home
- CSS - Introduction
- CSS - Syntax
- CSS - Inclusion
- CSS - Measurement Units
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursors
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS Advanced
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Media Types
- CSS - Paged Media
- CSS - Aural Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS3 Tutorial
- CSS3 - Tutorial
- CSS3 - Rounded Corner
- CSS3 - Border Images
- CSS3 - Multi Background
- CSS3 - Color
- CSS3 - Gradients
- CSS3 - Shadow
- CSS3 - Text
- CSS3 - Web font
- CSS3 - 2d transform
- CSS3 - 3d transform
- CSS3 - Animation
- CSS3 - Multi columns
- CSS3 - User Interface
- CSS3 - Box Sizing
- CSS Responsive
- CSS - Responsive Web Design
- CSS References
- CSS - Questions and Answers
- CSS - Quick Guide
- CSS - References
- CSS - Color References
- CSS - Web browser References
- CSS - Web safe fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
CSS Multi background property
CSS Multi background property is used to add one or more images at a time without HTML code. We can add images as per our requirement.
A sample syntax of multi background images is as follows −
#multibackground { background-image: url(/css/images/logo.png), url(/css/images/border.png); background-position: left top, left top; background-repeat: no-repeat, repeat; padding: 75px; }
The following are the values −
S.no | Values & Description |
---|---|
1. | background Used to set all the background image properties in one section |
2. | background-clip Used to declare the painting area of the background |
3. | background-image Used to specify the background image |
4. | background-origin Used to specify the position of the background images |
5. | background-size Used to specify the size of the background images |
- Related Articles
- CSS background property
- CSS background-size property
- CSS background-origin property
- CSS background-clip property
- CSS background-image property
- CSS background-blend-mode Property
- Animate CSS background-size property
- Usage of background property in CSS
- The Background Shorthand Property in CSS
- Usage of background-repeat property in CSS
- Usage of background-position property in CSS
- Usage of background-image property in CSS
- Usage of background-color property in CSS
- Usage of background-attachment property in CSS
- Shorthand property to set the background in CSS

Advertisements