Detailed explanation of several ways to create a top-left triangle in CSS

Detailed explanation of several ways to create a top-left triangle in CSS

Today we will introduce several ways to use CSS to write a top-left triangle.

Schematic diagram (taking 60px width and height as an example):

This kind of triangle can generally be used as the lower left foot of "dialog box" type graphics.

The first one:

#triangle-topleft {
  border: 30px solid #e6686e;
  height: 0;
  width: 0;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

Second type:

#triangle-topleft {
  width: 0;
  height: 0;
  border-top: 60px solid #e6686e;
  border-right: 60px solid transparent;
}

The third type:

#triangle-topleft {
  border: 60px solid transparent;
  width: 0;
  height: 0;
  border-left-color: #e6686e;
  border-top-width: 0;
}

You can try more different triangle methods and triangles in different directions.

Here is a highly recommended website that showcases commonly used CSS graphics: https://css-tricks.com/the-shapes-of-css/

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.

<<:  Optimizing query speed of MySQL with tens of millions of data using indexes

>>:  Web page layout should consider IE6 compatibility issues

Recommend

How to use CSS styles and selectors

Three ways to use CSS in HTML: 1. Inline style: s...

A detailed introduction to seata docker high availability deployment

Version 1.4.2 Official Documentation dockerhub st...

In-depth analysis of MySQL 8.0 redo log

Table of contents Preface Generation of redo log ...

Example of how to configure cross-domain failure repair in nginx

Nginx cross-domain configuration does not take ef...

Detailed explanation of the use of title tags and paragraph tags in XHTML

XHTML Headings Overview When we write Word docume...

js memory leak scenarios, how to monitor and analyze them in detail

Table of contents Preface What situations can cau...

Book page turning effects made with CSS3

Result:Implementation code: html <!-- Please h...

20 CSS coding tips to make you more efficient (sorted)

In this article, we would like to share with you ...

Detailed explanation of the difference between flex and inline-flex in CSS

inline-flex is the same as inline-block. It is a ...

How to customize at and cron scheduled tasks in Linux

There are two types of scheduled tasks in Linux s...

MySQL 5.7.23 decompression version installation tutorial with pictures and text

It is too troublesome to find the installation tu...

25 Examples of News-Style Website Design

bmi Voyager Pitchfork Ulster Grocer Chow True/Sla...

Tutorial on deploying the open source project Tcloud with Docker on CentOS8

1. Install Docker 1. I installed Centos7 in the v...