I'm attempting to design a unique shape using only CSS so that it resembles the following: image of custom image shape I've been experimenting with CSS3 Mask, but unfortunately the support isn't broad enough as I need it to work in IE 10, Firefox, and Chrome.
Here's the HTML:
<div class="image_holder">
<div class="image" style="background-image: url();"></div>
</div>
And here is the SASS code:
.image_holder {
margin: 0 auto;
max-width: 348px;
max-height: 326px;
position: absolute;
top: 0;
bottom: -23px;
left: 0;
right: 0;
margin-top: 10px;
@media (max-width: 991px) {
bottom: inherit;
}
.image {
background-repeat: no-repeat;
background-position: 0 0;
}
}
This is the SVG mask code created in Illustrator:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Lag_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="348px" height="326px" viewBox="0 0 348 326" enable-background="new 0 0 348 326" xml:space="preserve">
<g>
<defs>
<image id="SVGID_1_" x="0" y="0" width="348" height="326"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="hidden"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="#E52929" d="181px 1.4833px, 40.0206px 0px,-132.2294,40.6903-171.9397,127.7856
c-39.7103,87.0961,78.2502,157.8612,97.9829,170.1088c19.7319,12.2485,58.5174,42.1872,117.0348,12.2485
c58.5174-29.9395,118.3957-94.5812,121.7973-130.6441c3.4026-36.0629-1.7918-74.5152-52.6753-118.7237
C243.2785,18.7341,220.6634,1.4833,181.1749,1.4833"/>
</g>
</svg>