I have made some a fiddle of such a headline that I need.
CSS:
body {
background:url("http://subtlepatterns.subtlepatterns.netdna-cdn.com/patterns/tiny_grid.png");
}
.main-container {
width: 600px;
margin: 0 auto;
box-shadow:0 0 5px #d00;
}
.headline {
display: inline-block;
margin: 40px 0;
padding: 0 30px;
font: normal 33px/1.1 Georgia, "Times New Roman", Times, serif;
color: #3E3E3E;
height: 1px;
border-left: 300px solid #aaa;
border-right: 300px solid #aaa;
white-space: nowrap;
}
.headline > span {
display:block;
margin-top:-17px;
}
HTML:
<div class="main-container">
<h1 class="headline"><span>OUR LATEST WORKS</span></h1>
</div>
This is not the full solution, because I use the borders around the text that push out the text from the parent container.
Is there any other ways to do it? But without additional divs and JS.
PS: The background image may be different, so I already try to put the same bg under the text but it's not the solution.
PPS: The "div.main-container" must no contain the overflow:hidden
I came up with something like this http://jsfiddle.net/olgis/qkNfm/, similar to @GionaF solution just without fixed width, but still you will need a container to get red line underneath the text.
As I understand your criteria for solution is:
In this post http://www.impressivewebs.com/centered-heading-horizontal-line/, they are discussing "Centered Heading Overlaying a Horizontal Line with CSS" a lot of different solutions as well as a cross platform issue.
My guess would be you are aiming for something like this http://result.dabblet.com/gist/1560674 a neat solution with just one H1 .
You could use border-right and left if thats what you need. See the link http://www.quackit.com/css/properties/css_border-right-style.cfm for more details on how this works.
EDIT You could put the borders on the h1 element instead of in the container of that h1
if what you are trying to achieve is to have the containing div keep the h1 within its bounds, you should either try this:
or increase the width of .main-container to something like 1000px.
......................
Hi now check to this demo http://jsfiddle.net/zxzLT/22/
add this css
Live demo
It's hard without setting a background on h1's text, so it's a tricky workaround.
Check this demo
HTML:
CSS: