, ( - HTML CSS-) z- h2: :
HTML
<div id="wrapper">
<h2 class="heading">New Collection </h2>
</div>
CSS
#wrapper {
width:100%;
height:800px;
background:green;
position:relative;
z-index:-2;
}
.heading {
display:inline;
background:green;
}
.heading:after {
content:'';
display:inline-block;
width:100%;
height:20px;
background:#d3d3d3;
position:absolute;
right:0;
z-index:-1;
}
FIDDLE, , , , , CSS.
, .