If you want to achieve a unique design element, consider utilizing the :before and :after selectors as demonstrated in this example:
Example Link
HTML:
<div class="header">
<h1>Company</h1>
</div>
CSS:
body {
padding:0;
margin:0;
}
.header {
position:relative;
width:100%;
background-color:#cc4f4f;
padding:16px;
}
.header:before {
content:"";
position:absolute;
top:100%;
left:0;
width:100px;
height:20px;
background-color:#cc4f4f;
}
.header:after {
content:"";
position:absolute;
top:100%;
left:100px;
border:15px solid #cc4f4f;
border-bottom:5px solid transparent;
border-right:40px solid transparent;
}
.header h1 {
color:#FFF;
font-size:20px;
}
The :before selector generates a solid block, while the :after selector creates a slanted block using mixed borders. By manipulating border properties with different colors on each side, you can achieve a slanted effect, emanating from a single point.
Explore more about the :before/:after selectors here.