I already found the following perfect CSS snippet that creates a zip zag border on this one.
.h-zigzag { background: linear-gradient(-135deg, #333538 5px, transparent 0) 0 5px, linear-gradient(135deg, #333538 5px, #fff 0) 0 5px; background-color: #333538; background-position: left bottom; background-repeat: repeat-x; background-size: 10px 10px; }
As you can see, the code creates the border of the Persian zig zag, but I need to add this frame to the field containing the image as:
.h-zigzag { background: url(../img/grrenfooter.png) repeat-x top left scroll transparent; }
Could you help me mix them? I already tried several ways, but the image disappears when I mix them!
css css3
Mona coder
source share