CSS setting div background image implementation code

CSS setting div background image implementation code

Adding background image control to a component requires only two steps:

<View
            className="gifts"
            style={{
              background: `url(${baseUrl}starMove/exclusiveEntrance/card.png) no-repeat`,
              backgroundSize: '100% 100%',
            }}
          >
          <View classname="gift-lists"></View>
</View>

Set background and backgroundSize.

style={

 width: 100%;
 height: 100%;
}

ps: Here is how to use CSS file to make the background image size adapt to the size of div

Setting the background image attribute: background-size: cover; can make the background image adapt to the size of the div.

background-size has 3 properties:

  • auto: When this property is used, the background image will remain displayed at 100% size without any scaling. Anything beyond the div will be hidden. When the image is too small, it will be automatically tiled. This property is often used to create a repeating background or a semi-transparent image background.
  • cover: When this attribute is used, the image will be scaled to just cover the div, and the hidden part of the image is minimal. This attribute is widely used in large image backgrounds. This is difficult to understand and requires practical application.
  • contain: When this attribute is used, the image is scaled to the maximum and can be fully displayed, but because the size ratio of the image is different from the size ratio of the div, when the image cannot cover the div, the image will be automatically tiled.

Summarize

This is the end of this article about the implementation code of setting div background image with CSS. For more relevant CSS div background image content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  A look into tool-based websites: the definition of tool-based websites and typical case analysis (pictures and text)

>>:  SQL implementation of LeetCode (182. Duplicate mailboxes)

Recommend

How to export mysql query results to csv

To export MySQL query results to csv , you usuall...

MySQL 8.0.11 Installation Tutorial under Windows

This article records the installation tutorial of...

uniapp realizes the recording upload function

Table of contents uni-app Introduction HTML part ...

vue+tp5 realizes simple login function

This article example shares the specific code of ...

Linux cut command explained

The cut command in Linux and Unix is ​​used to cu...

How to remove inline styles defined by the style attribute (element.style)

When modifying Magento frequently, you may encount...

Implementing access control and connection restriction based on Nginx

Preface Nginx 's built-in module supports lim...

Example of implementing dashed border with html2canvas

html2canvas is a library that generates canvas fr...

Steps to set up Windows Server 2016 AD server (picture and text)

Introduction: AD is the abbreviation of Active Di...

How to skip errors in mysql master-slave replication

1. Traditional binlog master-slave replication, s...

Docker memory monitoring and stress testing methods

The Docker container that has been running shows ...

Complete steps to set up automatic updates in CentOS 8

The best thing you can do for your data and compu...

The role of nextTick in Vue and several simple usage scenarios

Purpose Understand the role of nextTick and sever...