CSS warped shadow implementation code

CSS warped shadow implementation code

This article introduces the implementation code of CSS warped shadow and shares it with everyone. The details are as follows:

If you look closely, you can see that the two corners at the bottom of each picture have varying degrees of warping.

The implementation principle is similar to [CSS] curve shadow, and is also achieved through pseudo-elements.

HTML Code

<ul class="box">
    <li><img src="......" alt=""></li>
    <li><img src="......" alt=""></li>
    <li><img src="......" alt=""></li>
</ul>

CSS Code

ul,li {
    list-style:none;
}
.box {
    width: 980px;
    height: auto;
    clear: both;
    overflow: hidden;
    margin: 20px auto;
}
.box li {
    width: 300px;
    height: 210px;
    position: relative;
    background: #fff;
    float: left;
    margin: 20px 10px;
    border: 2px solid #efefef;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .27), 0 0 60px rgba(0, 0, 0, 0.1) inset;
}
.box li img {
    display: block;
    width: 290px;
    height: 200px;
    margin: 5px;
}
.box li:before, .box li:after {
    content: '';
    position: absolute;
    z-index: -2;
    width: 80%;
    height: 80%;
    bottom: 8px;
    background: transparent;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
}
.box li:before {
    left: 7%;
    transform: skewX(-12deg) rotate(-4deg);
}
.box li:after {
    right: 7%;
    transform: skewX(12deg) rotate(4deg);
}

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.

<<:  MySQL primary key naming strategy related

>>:  HTML Tutorial: Collection of commonly used HTML tags (5)

Recommend

The difference between ID and Name attributes of HTML elements

Today I am a little confused about <a href=&quo...

Stop using absolute equality operators everywhere in JS

Table of contents Overview 1. Test for null value...

Implementation of k8s node rejoining the master cluster

1. Delete node Execute kubectl delete node node01...

JavaScript Shorthand Tips

Table of contents 1. Merge arrays 2. Merge arrays...

Discuss the application of mixin in Vue

Mixins provide a very flexible way to distribute ...

How to use MyCat to implement MySQL master-slave read-write separation in Linux

Table of contents Linux-Use MyCat to implement My...

Not a Chinese specialty: Web development under cultural differences

Web design and development is hard work, so don&#...

How to implement Docker to dynamically pass parameters to Springboot projects

background Recently, some friends who are new to ...

Experience in designing a layered interface in web design

Many netizens often ask why their websites always ...

Understanding what Node.js is is so easy

Table of contents Official introduction to Node.j...