h2{ display: inline-block; text-align: center; padding: 10px 10px 15px; background: linear-gradient(90deg, transparent 25%, lightseagreen 25%, lightseagreen 75%, transparent 75%); background-size: 100% 5px; background-position: 0% 100%; background-repeat: no-repeat; } .semitransparent{ background: linear-gradient(90deg, transparent 25%, lightseagreen 25%, lightseagreen 75%, transparent 75%), linear-gradient(90deg, transparent 0%, rgba(50,50,50,0.25) 0%); background-size: 100% 5px, 100% 100%; background-position: 0% 100%, 0% -5px; background-repeat: no-repeat; } .colored{ background: linear-gradient(90deg, transparent 25%, lightseagreen 25%, lightseagreen 75%, transparent 75%), linear-gradient(90deg, transparent 0%, aliceblue 0%); background-size: 100% 5px, 100% 100%; background-position: 0% 100%, 0% -5px; background-repeat: no-repeat; } body{ background-image: radial-gradient(circle, #3F9CBA 0%, #153346 100%); font-family: Calibri, Tahoma; text-align: center; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script> <h2>Some Text</h2><br/> <h2 class='semitransparent'>Some Lengthy Text</h2><br/> <h2 class='colored'>Some more examples yay!!</h2>