Home >Web Front-end >CSS Tutorial >What to do if images in css cannot be displayed

What to do if images in css cannot be displayed

藏色散人
藏色散人Original
2020-12-21 10:35:474447browse

Solutions for images in css that cannot be displayed: 1. Check whether the css call is successful and modify it; 2. Modify the div settings; 3. The background image calling path is wrong and modify it; 4. Set the width and height of the background element ; 5. Set the element to have block attributes; 6. Modify the problem that is covered by the style of the CSS class with the same name.

What to do if images in css cannot be displayed

The operating environment of this tutorial: Windows 7 system, CSS3 version, this method is suitable for all brands of computers.

Recommended: "css Video Tutorial"

The reason why pictures in css cannot be displayed

1. The css has not been Call

This is necessary to check whether the css call is successful.

2. Wrong div settings can easily cause the background image to be too high to be displayed.

3. Wrong background image calling path

css background used to set the background, writing method It's .div{backgroud:url('1.jpg');}. Check whether your css is written correctly. The picture is not displayed. It may be because the picture is stored in the wrong location. If you don't know where the picture is placed. How should the folder be written? You can put the html file and the picture together and directly write backgroud:url('1.jpg');

4. The background element has no width and height.

When the element has no width and height, the background cannot be displayed. The background does not expand the element. Set background-size.

The div box has no content and needs to set width and height.

5. The element does not have block attributes.

The height and width set when the element does not have a block attribute are invalid. So the picture will not be displayed.

6. Overwritten by the style of the css class with the same name.

Assume that the background display image is set by the name .bg in the front, and the background display color is set by the name .bg later.

At this time, you need to open the console (press F12 key) to view the CSS style background property.

The above is the detailed content of What to do if images in css cannot be displayed. 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