Home  >  Article  >  Web Front-end  >  How to put pictures in css

How to put pictures in css

藏色散人
藏色散人Original
2021-04-25 10:07:2646439browse

How to put pictures in css: 1. Use the background abbreviation attribute to introduce pictures when setting the background; 2. Directly use the background-image attribute to introduce background pictures.

How to put pictures in css

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

How to put pictures in css?

With the development of the Internet, network speed continues to increase, and our current web pages have become richer. In addition to being able to transmit text, we can also transmit pictures. How do we use css to place images on web pages? Let's take a look at how to use css to place images on web pages.

css You can use the background abbreviation attribute to introduce an image when setting the background, or you can use the background-image attribute to introduce a background image. The background-image property sets the background image for the element.

Use the background abbreviation attribute to introduce images:




 
 



This is some text

This is some text

This is some text

This is some text

This is some text

This is some text

This is some text

This is some text

This is some text

This is some text

This is some text

Rendering:

How to put pictures in css

Use the background-image attribute to place images in the web page:






Rendering:

How to put pictures in css

background shorthand attribute:

background shorthand attribute sets all background attributes in one statement.

You can set the following attributes:

background-color
background-position
background-size
background-repeat
background-origin
background-clip
background-attachment
background-image

If you don’t set one of the values, there will be no problem. For example, background:#ff0000 url('smiley.gif'); is also allowed. .

It is generally recommended to use this attribute instead of using individual attributes separately, because this attribute is better supported in older browsers and requires fewer letters to be typed.

background-image attribute: The

background-image attribute sets the background image for an element. 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.

Attribute value:

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

none Default value. No background image is displayed.

inherit specifies that the setting of the background-image attribute should be inherited from the parent element.

【Recommended learning: css video tutorial

The above is the detailed content of How to put 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