CSS transparent border background-clip magic

CSS transparent border background-clip magic

This article mainly introduces the wonderful use of CSS transparent border background-clip, share it with everyone, and leave a note for yourself

<div class="border"></div>
.border {  
  width: 300px;  
  height: 300px;  
  background: url("https://waiqin.oss-cn-shenzhen.aliyuncs.com/jxb-vip-ts/activitys/activitys15677540269589timg.jpg");  
  background-size: cover;  
  margin-left: 100px;  
  border: 10px solid rgba(255,255,255,.6);  
  background-clip: padding-box;  
}

background-clip: padding-box; key code

The initial value of the background-clip property is border-box, which means that the background will be clipped by the element's border box (the outer edge of the border). If we don't want the background to invade the border, all we have to do is set its value to padding-box, so that the browser will use the outer edge of the inner margin to cut off the background.

Effect

Without background-clip: padding-box;, we can see that the background image is visible through the semi-transparent border.

After adding it, the background is cut off at the border.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Development details of Vue3 components

>>:  DHTML objects (common properties of various HTML objects)

Recommend

Vue implements tab navigation bar and supports left and right sliding function

This article mainly introduces: using Vue to impl...

Detailed explanation of the practical application of centos7 esxi6.7 template

1. Create a centos7.6 system and optimize the sys...

How to insert video into HTML and make it compatible with all browsers

There are two most commonly used methods to insert...

Javascript implements simple navigation bar

This article shares the specific code of Javascri...

Basic tutorial on controlling Turtlebot3 mobile robot with ROS

Chinese Tutorial https://www.ncnynl.com/category/...

Delegating Privileges in Linux Using Sudo

Introduction to sudo authority delegation su swit...

Docker Compose one-click ELK deployment method implementation

Install Filebeat has completely replaced Logstash...

React Class component life cycle and execution order

1. Two ways to define react components 1. Functio...

VMware and CentOS system installation method to reset the root password

Today's Tasks 1. Choice of Linux distribution...

MySQL InnoDB tablespace encryption example detailed explanation

Preface Starting from MySQL 5.7.11, MySQL support...

VUE+SpringBoot implements paging function

This article mainly introduces how to implement a...

Centos7 implements sample code for restoring data based on MySQL logs

Introduction Binlog logs, that is, binary log fil...

Web front-end development course What are the web front-end development tools

With the development of Internet technology, user...

Nginx/Httpd load balancing tomcat configuration tutorial

In the previous blog, we talked about using Nginx...