CSS to achieve the small sharp corner effect of bubbles

CSS to achieve the small sharp corner effect of bubbles

Effect picture (the border color is too light, put it in {}):

{ }

Reference link Pure CSS bubble effect

Knowledge points needed:

When the width and height of the div are both 0, the entire border is composed of four triangles, one triangle on each side. This can be used to make small sharp corners, such as the following:

Set the color of the three unnecessary borders to the same as the background, so that you can get the desired small pointed corners, and then use positioning to adjust the position.

The above method can get a small pointed corner with color, but the effect is to show a small golden corner with a border. So on the basis of the existing ones, two small sharp corners appear, and then they are superimposed and displayed using the z-index attribute. Because two are needed, pseudo elements can be used so that no non-semantic elements appear. The code is as follows:

&::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: solid 10px;
    border-color: #E9E9E9 rgba(255, 255, 255, 0)
          rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
    position: absolute;
    top: 208px;
    left: 40px;
    z-index: 2;
}

&::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: solid 8px;
    border-color: #fff rgba(255, 255, 255, 0) 
        rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
    position: absolute;
    top: 207px;
    left: 41.5px;
    z-index: 3;
}

Summarize

This is the end of this article about how to achieve the small pointed corner effect of bubbles with CSS. For more relevant CSS bubble small pointed corner content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  The webpage cannot be opened because the div element lacks a closing tag

>>:  Detailed explanation of several storage methods of docker containers

Recommend

JavaScript canvas to achieve mirror image effect

This article shares the specific code for JavaScr...

Teach you 10 ways to center horizontally and vertically in CSS (summary)

A must-have for interviews, you will definitely u...

Vue3+el-table realizes row and column conversion

Table of contents Row-Column Conversion Analyze t...

Detailed explanation of execution context and call stack in JavaScript

Table of contents 1. What is the execution contex...

Linux nohup to run programs in the background and view them (nohup and &)

1. Background execution Generally, programs on Li...

How to hide rar files in pictures

You can save this logo locally as a .rar file and...

Solve the problem that Docker pulls MySQL image too slowly

After half an hour of trying to pull the MySQL im...

Simple steps to configure Nginx reverse proxy with SSL

Preface A reverse proxy is a server that receives...

Detailed explanation of the use of vue-resource interceptors

Preface Interceptor In some modern front-end fram...

Implementing custom scroll bar with native js

This article example shares the specific code of ...

Detailed explanation of this pointing in JS arrow function

Arrow function is a new feature in ES6. It does n...

A brief discussion on the implementation of fuzzy query using wildcards in MySQL

In the MySQL database, when we need fuzzy query, ...

A brief discussion on Linux virtual memory

Table of contents origin Virtual Memory Paging an...