CSS border adds four corners implementation code

CSS border adds four corners implementation code

1.html

<div class="loginbody">
          <div class="border_corner border_corner_left_top"></div>
          <div class="border_corner border_corner_right_top"></div>
          <div class="border_corner border_corner_left_bottom"></div>
          <div class="border_corner border_corner_right_bottom"></div>

     <--other……………………-->
 </div>

2. CSS

.loginbody{
        border: 1px solid #21a7e1;
        box-shadow: 5px 5px 10px 10px rgba(24,68,124,0.4);
        padding-top:20px;
        border-radius: 6px;
        position: relative;
      }

      /*Four corner frames*/
      .border_corner{
        z-index: 2500;
        position: absolute;
        width: 19px;
        height: 19px;
        background: rgba(0,0,0,0);
        border: 4px solid #1fa5f1;
      }
      .border_corner_left_top{
        top: -2px;
        left: -2px;
        border-right: none;
        border-bottom: none;
        border-top-left-radius: 6px;
      }
      .border_corner_right_top{
        top: -2px;
        right: -2px;
        border-left: none;
        border-bottom: none;
        border-top-right-radius: 6px;
      }
      .border_corner_left_bottom{
        bottom: -2px;
        left: -2px;
        border-right: none;
        border-top: none;
        border-bottom-left-radius: 6px;
      }
      .border_corner_right_bottom{
        bottom: -2px;
        right: -2px;
        border-left: none;
        border-top: none;
        border-bottom-right-radius: 6px;
      }

This is the end of this article about adding four corners to CSS borders. For more information about adding four corners to CSS borders, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Introduction to the pitfalls of Linux high concurrency and performance optimization

>>:  Detailed explanation of Javascript basics loop

Recommend

Datagrip2020 fails to download MySQL driver

If you cannot download it by clicking downloadlao...

Html tips to make your code semantic

Html semantics seems to be a commonplace issue. G...

Angular Cookie read and write operation code

Angular Cookie read and write operations, the cod...

Detailed example of changing Linux account password

Change personal account password If ordinary user...

MySQL data compression performance comparison details

Table of contents 1. Test environment 1.1 Hardwar...

Quickly solve the problem that CentOS cannot access the Internet in VMware

Yesterday I installed CentOS7 under VMware. I wan...

Simple implementation of mini-vue rendering

Table of contents Preface Target first step: Step...

Comprehensive explanation of CocosCreator hot update

Table of contents Preface What is Hot Change Coco...

XHTML introductory tutorial: Web page Head and DTD

Although head and DTD will not be displayed on th...

Example of asynchronous file upload in html

Copy code The code is as follows: <form action...

Win2008 R2 mysql 5.5 zip format mysql installation and configuration

Win2008 R2 zip format mysql installation and conf...

Detailed analysis of the parameter file my.cnf of MySQL in Ubuntu

Preface Based on my understanding of MySQL, I thi...