Home > Article > Web Front-end > Implementation of css shadow effect_html/css_WEB-ITnose
How to code the shadow of this kind of picture?
http://www.w3school.com.cn/css3/css3_border.asp
There is a shadow in a small part of the upper left corner. I really can’t write it.
<!DOCTYPE html><html><head><style> .div1{background-color:yellow;width:200px;height:100px;margin-top:-44px;margin-left:96px;position: absolute;}.div2{background-color:red;width:40px;height:40px;box-shadow:-5px -5px 10px black;transform: skew(30deg,20deg);-ms-transform: skew(30deg,20deg); /* IE 9 */-webkit-transform: skew(5deg,5deg); /* Safari and Chrome */margin-top:100px;margin-left:100px;}</style></head><body><div class="div2"></div><div class="div1"></div></body></html>
Thank you Haha