How to implement wavy border css

藏色散人
Release: 2023-01-04 09:38:19
Original
5061 people have browsed it

How to implement wavy borders in css: first create a new div and give it a class name; then set a background color and set the div to white; then use the pseudo element before to set it and insert a gradient Color shape; finally add size to divide the graphics, and add triangles to achieve the wave effect.

How to implement wavy border css

The operating environment of this tutorial: Dell G3 computer, Windows 7 system, HTML5&&CSS3 version.

Recommended: "css video tutorial"

Implementation of wavy border css

1. Create a new div and Give it a class name

<div class="zigzag"></div>
Copy after login

2. Set a background color and set the div to white

body {
    margin: 0;
    padding: 0;
    background: lightblue;
}
.zigzag {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 50%;
    background: #fff;
}
Copy after login

3. Use the pseudo element before to set it and insert a shape with a gradient color.

.zigzag:before
{
    content: &#39;&#39;;
    position: absolute;
    width: 100%;
    height: 20px;
    display: block;
    background: linear-gradient(
        -45deg, transparent 33.33%,
        lightblue 33.33%, lightblue 66.66%,
        transparent 66.66%
        );
}
Copy after login

How to implement wavy border css

#4. Add size to divide the graphics.

background-size: 30px 60px;
Copy after login

How to implement wavy border css

5. Add a triangle with a positive 45-degree angle.

linear-gradient(
 45deg, transparent 33.33%,
 lightblue 33.33%, lightblue 66.66%,
 transparent 66.66%
);
Copy after login

How to implement wavy border css

#6. Rotate the triangle, and waves will appear at this time.

transform: rotateX(180deg)
Copy after login

How to implement wavy border css

The above is the detailed content of How to implement wavy border css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template