Home  >  Article  >  Web Front-end  >  How to insert pictures in Css

How to insert pictures in Css

藏色散人
藏色散人Original
2021-04-25 09:36:1099395browse

How to insert pictures using Css: first create an HTML sample file; then create a div in the body; finally insert pictures by setting the "background-image: url(1.jpg);" style.

How to insert pictures in Css

The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.

In css, you can use the background-image attribute to add pictures. The background-image property sets the background image for the element. The initial background image (original image) is placed according to the value of the background-position property. The background of an

element occupies the entire size of the element, including padding and borders, but not margins. By default, the background image is placed in the upper left corner of the element and repeats horizontally and vertically.

Tip: Please set an available background color so that the page can get good visual effects even if the background image is not available.

Details

The background-image attribute sets an image in the background of the element. Depending on the value of the background-repeat property, the image can be tiled infinitely, tiled along some axis (x- or y-axis), or not tiled at all.

The initial background image (original image) is placed according to the value of the background-position attribute.

Attribute value:

url('URL') Path pointing to the image.

none Default value. No background image is displayed.

[Recommended learning: css video tutorial]

Example:




   
   


  

Rendering:

How to insert pictures in Css

The above is the detailed content of How to insert pictures in Css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn