CSS realizes the scene analysis of semi-transparent border and multiple border

CSS realizes the scene analysis of semi-transparent border and multiple border

Scenario 1:

To achieve a semi-transparent border:

Due to the default behavior of CSS styles, the background color is rendered in the range of content+padding+border.

The semi-transparent border is affected by the main color, and the effect achieved is

Solution:

Use the background-clip property to specify the background drawing area so that the drawing area is limited to content + padding.

Div {
border:10px solid rgba(0,0,0,.5);
background: lightblue;
background-clip: padding-box;
}

Supplement: background-clip is not compatible with IE6-8, Opera10

Scenario 2:

To implement multiple borders:

Solution 1: Use box-shadow to generate multiple projections

The code and effect are as follows:

div {
background:#c3e6f4;
box-shadow:0 0 0 15px #b7dae6,0 0 0 30px #cce2ea;
}

Solution 2: Box border combined with stroke attributes (outline)

Features: Only double borders can be achieved, more flexible, and can use dotted line and other effects

The code and effect are as follows:

div {
border: 6px dashed #c3f4ec;
outline: 10px solid #d9faf6;
background-clip: padding-box;
} 

Summarize

The above is the scenario analysis of implementing semi-transparent borders and multiple borders with CSS introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  TypeScript problem with iterating over object properties

>>:  Summary of MySQL slow log related knowledge

Recommend

Solution to forgetting mysql password under linux

The problem is as follows: I entered the command ...

Detailed explanation of Javascript basics

Table of contents variable Data Types Extension P...

A brief analysis of how to use border and display attributes in CSS

Introduction to border properties border property...

Summary of JavaScript JSON.stringify() usage

Table of contents 1. Usage 1. Basic usage 2. The ...

JavaScript+html to implement front-end page sliding verification

This article shares the specific code of JavaScri...

WeChat applet realizes the function of uploading pictures

This article example shares the specific code for...

JavaScript gets the scroll bar position and slides the page to the anchor point

Preface This article records a problem I encounte...

Detailed explanation of MySQL database Event scheduled execution tasks

1. Background As the project's business conti...

HeidiSQL tool to export and import MySQL data

Sometimes, in order to facilitate the export and ...

Let’s talk about the symbol data type in ES6 in detail

Table of contents Symbol Data Type The reason why...

Some parameter descriptions of text input boxes in web design

<br />In general guestbooks, forums and othe...

Binary Search Tree Algorithm Tutorial for JavaScript Beginners

Table of contents What is a Binary Search Tree (B...

Let's talk in detail about the props attributes of components in Vue

Table of contents Question 1: How are props used ...