CSS delivery address parallelogram line style example code

CSS delivery address parallelogram line style example code

The code looks like this:

// Line style of the parallelogram of the delivery address <view class="top"></view>
	
	//Style .top{
		background-color: #fff;
    	position: relative;
	}
	.top:before{
		position: absolute;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    height: 2px;
	    background: repeating-linear-gradient(-45deg,#ff6c6c,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);
	    background-size: 80px;
	    content: "";
} 

insert image description here

ps: css realizes the parallelogram colored lines under the delivery address

<div class="xiantiao">
  <div class="city" style="margin-left:8px;"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city"></div>
  <div class="city" style="margin-right:0px;"></div>
</div>
<style>
            .xiantiao{width:100%; height:2px; overflow:hidden;}
            .city {
              width:36px;
              height:2px;
              margin-right: 23px;
              background-color: #44a5fc;
              color: #333;
              transform: skew(-45deg);
              float:left;
            }
</style>

This is the end of this article about the CSS delivery address parallelogram line style example code. For more related CSS border line style content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Teach you to quickly build a web cluster project based on nginx

>>:  Discussion on horizontal and vertical centering of elements in HTML

Recommend

SQL statements in Mysql do not use indexes

MySQL query not using index aggregation As we all...

MySQL 5.6.33 installation and configuration tutorial under Linux

This tutorial shares the installation and configu...

MySQL database JDBC programming (Java connects to MySQL)

Table of contents 1. Basic conditions for databas...

CSS code to achieve 10 modern layouts

Preface I watched web.dev's 2020 three-day li...

Vue implements the frame rate playback of the carousel

This article example shares the specific code of ...

5 issues you should pay attention to when making a web page

1. Color matching problem <br />A web page s...

Detailed explanation of Nginx log customization and enabling log buffer

Preface If you want to count the source of websit...

Pure CSS to achieve the effect of picture blinds display example

First, let me show you the finished effect Main i...

Comparative Analysis of UI Applications of Image Social Networking Sites (Figure)

In our life, work and study, social networks have ...

The qualities and abilities a web designer should have

Web design is an emerging marginal industry that c...

Five ways to traverse JavaScript arrays

Table of contents 1. for loop: basic and simple 2...

Limit input type (multiple methods)

1. Only Chinese characters can be input and pasted...