2017-05-02 1 views

Antwort

4

Try-Display zu verwenden: inline-block

display: inline-block;

Example

+0

h1 {padding -links: 50px; Padding-rechts: 50px; padding-unten: 10px; Anzeige: Inline-Block; } und text-align: center für Eltern. – GhitaB

0

Hier ist Ihre Antwort fiddle link

<div class="full-width"> 
<h1>Lorem</h1><br/> 
<h1>Loerm ipsum h1</h1><br/> 
<h1>Other Loerm ipsum h1</h1> 
</div> 

h1{ 
    border-bottom: 3px solid red; 
    display: inline-block; 
    text-align:center; 

} 
.full-width{ 
    text-align:center 
} 
Verwandte Themen