Search results
The background-image property specifies an image to use as the background of an element. By default, the image is repeated so it covers the entire element.
Oct 22, 2024 · The background-image CSS property sets one or more background images on an element. Try it. The background images are drawn on stacking context layers on top of each other. The first layer specified is drawn as if it is closest to the user. The borders of the element are then drawn on top of them, and the background-color is drawn beneath them.
The background-image property sets one or more background images for an element. By default, a background-image is placed at the top-left corner of an element, and repeated both vertically and horizontally.
Background Image on an HTML element. To add a background image on an HTML element, use the HTML style attribute and the CSS background-image property:
CSS background-image property is used to add a background image on an element or the webpage. For example, body { background-image: url("girl-avatar.png"); } Browser Output. Here, the background-image property sets the specified image in the background of the body element. Syntax of Background-Image.
Feb 17, 2015 · The background-image property in CSS applies a graphic (e.g. PNG, SVG, JPG, GIF, WEBP) or gradient to the background of an element. There are two different types of images you can include with CSS: regular images and gradients.
Oct 22, 2024 · The background shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method. Component properties not set in the background shorthand property value declaration are set to their default values.
Jul 21, 2021 · The background-image CSS property allows you to then place the image behind any HTML element you wish. This could either be the whole page (by using the body selector in CSS which targets the <body> element in our HTML), or just a standalone specific part of the page such as a section element like in the example below.
Let's learn everything you need to know about CSS background images with examples. How To Add Background Image In CSS. The background-image property is used to set the background image of an element.
Learn how to style images using CSS. Rounded Images. Use the border-radius property to create rounded images: Example. Rounded Image: img { border-radius: 8px; } Try it Yourself » Example. Circled Image: img { border-radius: 50%; } Try it Yourself » Thumbnail Images. Use the border property to create thumbnail images. Thumbnail Image: Example.