- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Backgrounds
In CSS, backgrounds refer to the visual appearance behind an element's content. You can use CSS properties to set background colors, images, gradients, and other effects. Here are some common background-related properties and techniques in CSS:
- Background Color (background-color): Sets the background color of an element using named colors, hexadecimal codes, RGB, RGBA, HSL, HSLA values, or color keywords.
body {
background-color: lightblue;
}
.highlight {
background-color: rgba(255, 0, 0, 0.5); /* Semi-transparent red */
}
- Background Image (background-image): Specifies an image to use as the background. You can provide a URL to an image file or use gradients for more dynamic effects.
.hero-section {
background-image: url('path/to/image.jpg');
}
.gradient-bg {
background-image: linear-gradient(to right, #ff0000, #ffff00); /* Red to yellow gradient */
}
- Background Repeat (background-repeat): Controls how the background image is repeated or tiled. Options include repeat, repeat-x, repeat-y, and no-repeat.
.tiled-bg {
background-image: url('path/to/tile-image.png');
background-repeat: repeat;
}
.no-repeat-bg {
background-image: url('path/to/image.jpg');
background-repeat: no-repeat;
}
- Background Position (background-position): Sets the starting position of the background image within its container. Values can be keywords (top, bottom, left, right) or pixel/percentage values.
.bg-center {
background-image: url('path/to/image.jpg');
background-position: center;
}
.bg-custom-position {
background-image: url('path/to/image.jpg');
background-position: 50px 20px; /* X and Y offset in pixels */
}
- Background Size (background-size): Specifies the size of the background image. Options include cover (image covers the entire container), contain (image fits inside the container), and specific dimensions (e.g., 100px 50px).
.cover-bg {
background-image: url('path/to/image.jpg');
background-size: cover;
}
.custom-size-bg {
background-image: url('path/to/image.jpg');
background-size: 200px 100px; /* Width and height in pixels */
}
- Multiple Backgrounds (background): You can apply multiple background layers to an element using the background shorthand property. Each layer can have its own properties like color, image, position, size, etc.
.multi-bg {
background: url('path/to/image.jpg') center/cover no-repeat, linear-gradient(to right, #ff0000, #ffff00);
}
These are some of the key background-related properties and techniques in CSS that you can use to style backgrounds and create visually appealing designs for your web pages.