Example code for drawing double arrows in CSS common styles

Example code for drawing double arrows in CSS common styles

1. Multiple calls to single arrow

Once a single arrow is implemented, it is easy to implement a double arrow. Two principles for implementing a single arrow have been introduced above: border rotation method and double triangle overlay method. This time, we use the border rotation as an example to call multiple times to implement the double arrow.
1. Border rotation single arrow implementation

.arrow-right
  height: 120px;
  width: 30px;
  display :inline-block;
  position: relative;
}
.arrow-right::after {
  content: "";
  height: 60px;
  width: 60px;
  top: 12px;
  border-width: 8px 8px 0 0;
  border-color: blue;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
}

The effect diagram is as follows:

insert image description here

2. Multiple calls to single arrow

<div>
	<span class="arrow-right"/>
    <span class="arrow-right"/>
</div>

The effect diagram is as follows:

insert image description here

2. Draw double arrows directly by rotating the border

Previously, a single arrow was drawn using the ::after pseudo-element. Now, by adding the ::before pseudo-element and drawing another single arrow, pure CSS can be used to draw a double arrow.

.arrow-right
  height: 120px;
  width: 30px;
  display :inline-block;
  position: relative;
}
.arrow-right::before {
  content: "";
  height: 60px;
  width: 60px;
  top: 12px;
  left: 30px;
  border-width: 8px 8px 0 0;
  border-color: blue;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
}
.arrow-right::after {
  content: "";
  height: 60px;
  width: 60px;
  top: 12px;
  border-width: 8px 8px 0 0;
  border-color: blue;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
}

The effect diagram is as follows:

insert image description here

The double triangle overlay method can also directly draw double arrows, but it is more complicated to implement. It is not as easy to implement as the border rotation method.

Summarize

This is the end of this article about the sample code for drawing double arrows in CSS common styles. For more relevant CSS drawing double arrow content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  Difference between var and let in JavaScript

>>:  Implementation steps for installing FTP server in Ubuntu 14.04

Recommend

Solve the problem of docker pull image error

describe: Install VM under Windows 10, run Docker...

How to implement the Vue mouse wheel scrolling switching routing effect

A root routing component (the root routing compon...

React uses routing to redirect to the login interface

In the previous article, after configuring the we...

MySQL simple example of sorting Chinese characters by pinyin

If the field storing the name uses the GBK charac...

How to add interface listening mask in Vue project

1. Business Background Using a mask layer to shie...

HTML weight loss Streamline HTML tags to create web pages

HTML 4 HTML (not XHTML), MIME type is text/html, ...

HTML form tag usage learning tutorial

Forms in HTML can be used to collect various type...

A brief discussion on several specifications of JS front-end modularization

Table of contents Preface The value of front-end ...

Solution to the docker command exception "permission denied"

In Linux system, newly install docker and enter t...

Search engine free collection of website entrances

1: Baidu website login entrance Website: http://ww...

Node script realizes automatic sign-in and lottery function

Table of contents 1. Introduction 2. Preparation ...

A brief discussion on the magical uses of CSS pseudo-elements and pseudo-classes

CSS plays a very important role in a web page. Wi...

React-native sample code to implement the shopping cart sliding deletion effect

Basically all e-commerce projects have the functi...