How to set the picture not to be tiled in css

藏色散人
Release: 2023-01-04 09:34:18
Original
2596 people have browsed it

How to set the image to be non-tiled in css: First create an HTML sample file; then add "background:url(img/3.jpg)no-repeat;}" to the style tag to set the image to be non-tiled. Can.

How to set the picture not to be tiled in css

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

The background-repeat attribute of css defines the tiling mode of the image . Repeat starting from the original image, which is defined by background-image and placed according to the value of background-position.

css can use the background-repeat attribute to set the image not to be tiled.

Attribute value:

repeat: Tile in both horizontal and vertical directions, this is also the default value

no-repeat: Not tiling, that is, only displayed once

repeat-x: Tile only in the horizontal direction

repeat-y: Tile only in the vertical direction

The position of the background image is set according to the background-position property. If the background-position property is not specified, the image will be placed in the upper left corner of the element.

Example:

1. The tiling method is not set



hello word
Copy after login

Rendering:

How to set the picture not to be tiled in css

2. Set the picture Not tiling



hello word
Copy after login

Rendering:

How to set the picture not to be tiled in css

Recommended study: "css video tutorial"

The above is the detailed content of How to set the picture not to be tiled in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!