Hallo,
Folgender Ansatz ist noch nicht so elegant, aber sollte die Idee vermitteln können: http://jsfiddle.net/KcLEe/
was haltet ihr von meiner Weiterentwicklung?
  
h1::before {  
    margin-right: 1ex;  
}  
h1::after {  
    margin-left: 1ex;  
}  
h1::after, h1::before{  
        display: inline-block;  
    height: 0.3em;  
    width: 3em;  
    border-top: 1px solid black;  
    border-bottom: 1px solid black;  
    content: '';  
    margin-bottom: 4px;  
}  
Gruß
Kalk