CSS to achieve chat bubble effect

CSS to achieve chat bubble effect

1. Rendering

JD Effect

Simulation Effect

2. Principle

Prepare a box with height and width of 0

Set a border around this box

Replace the unnecessary borders with transparent , and set the corresponding colors where they need to be displayed

If you need to change its size, just set the border width border-width width

Set the font-size and line-height to 0 to avoid affecting the display.

Finally, use positioning to set it to the desired position

3. Code

HTML Structure

<div class="square">
    <p class="triangle"></p>
</div>

CSS Styles

.square {
  position: relative;
  width: 400px;
  height: 200px;
  background: green;
  margin: 150px auto;
}
.triangle {
	position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px;
  border-color: transparent transparent red transparent;
  font-size: 0;
  line-height: 0;
}

This is the end of this article about CSS chat bubbles. For more relevant CSS chat bubbles content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  MySQL 5.7 Common Data Types

>>:  Linux checkup, understand your Linux status (network IO, disk, CPU, memory)

Recommend

Analysis of examples of using anti-shake and throttling in Vue components

Be careful when listening for events that are tri...

Detailed process of NTP server configuration under Linux

Table of contents 1. Environment Configuration 1....

How to set the position of the block element in the middle of the window

How to set the position of the block element in t...

Why node.js is not suitable for large projects

Table of contents Preface 1. Application componen...

How to use async await elegantly in JS

Table of contents jQuery's $.ajax The beginni...

Analysis of MySQL query sorting and query aggregation function usage

This article uses examples to illustrate the use ...

Learn MySQL database in one hour (Zhang Guo)

Table of contents 1. Database Overview 1.1 Develo...

Detailed steps for installing and configuring MySQL 8.0 on CentOS

Preface Here are the steps to install and configu...

Detailed explanation of the properties and functions of Vuex

Table of contents What is Vuex? Five properties o...

Scoring rules of YSlow, a webpage scoring plugin developed by Yahoo

YSlow is a page scoring plug-in developed by Yaho...

Analysis and solutions to problems encountered in the use of label tags

I used the label tag when I was doing something re...