I have this div.
.a {
background-image: url(url_image);
height: 400px;
background-position: bottom;
background-attachment: scroll
}
<div class="a">
<div class="b">
<div class="content1">
</div>
<div class="content2">
</div>
<div class="content3">
</div>
</div>
The .a
image has an irregular border:
I need to put a background-image to div .b
and obtain something like this:
Is this possible?