2017-09-14 6 views
0

Demowie Element zu vermeiden

enter image description here

überlappende bemerkte ich einige Male Elemente überlappen ich bin nicht sicher why.i wurden entfernt Ränder von oben Element (p-Tag), so gibt es keine Möglichkeit, diese Marge ist collapse.so was ist das eigentlich?

Ich kann das durch Hinzufügen von display:inline-block beheben. Aber gibt es bessere Möglichkeiten, das zu vermeiden?

.ui-btn { 
 
    border: 2px solid #ffffff; 
 
    border-radius: 30px; 
 
    background-color: #18aff4; 
 
    font-weight: bold; 
 
    text-align: center; 
 
    font-size: 18px; 
 
    color: white; 
 
    padding: 18px; 
 
} 
 

 
p { 
 
    margin: 0; 
 
    padding: 0; 
 
}
<div class="text"> 
 
    <p ">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 
 
    has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop 
 
    publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 

 
    <a class="ui-btn ">Sign up</a> 
 
</div>

+0

mit 'display: inline-block' ist * wie * es gelöst werden kann ... weiß nicht, warum Sie das vermeiden wollen ... – kukkuz

Antwort

2

Sie können display: inline-block;-.ui-btn fügen Sie es nach Absatz angezeigt werden soll.

<style type="text/css"> 
 
.ui-btn { 
 
    border: 2px solid #ffffff; 
 
    border-radius: 30px; 
 
    background-color: #18aff4; 
 
    font-weight: bold; 
 
    text-align: center; 
 
    font-size: 18px; 
 
    color: white; 
 
    padding: 18px; 
 
    display: inline-block; 
 
} 
 
p{ 
 
    margin: 0; 
 
    padding:0; 
 
} 
 
</style> 
 

 
<div class="text"> 
 
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 
 
    has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop 
 
    publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 

 
    <a class="ui-btn">sign up</a> 
 
</div>

0

.ui-btn { 
 
    border: 2px solid #ffffff; 
 
    border-radius: 30px; 
 
    background-color: #18aff4; 
 
    font-weight: bold; 
 
    text-align: center; 
 
    font-size: 18px; 
 
    color: white; 
 
    padding: 18px; 
 
} 
 
p{ 
 
    margin:0; 
 
    padding:0; 
 
    margin-bottom:40px; 
 
}
<div class="text"> 
 
    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 
 
    has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop 
 
    publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 

 
    <a class="ui-btn">sign up</a> 
 
</div>

Padding auf <a>-Tag nicht als Raum zählen. Fügen Sie also eine p{margin-bottom:40px;} zu Ihrer <p> wird eine Lücke zwischen ihm erstellen.

0

Anchor-Tag ist Inline-Tag standardmäßig geben float: links; in css

.ui-btn { 
    border: 2px solid #ffffff; 
    border-radius: 30px; 
    background-color: #18aff4; 
    font-weight: bold; 
    text-align: center; 
    font-size: 18px; 
    color: white; 
    padding: 18px; 
    float: left; 
} 
2

Sie können mit jeder margin-bottom, float, inline-block aber </br> auch funktioniert.

.ui-btn { 
 
    border: 2px solid #ffffff; 
 
    border-radius: 30px; 
 
    background-color: #18aff4; 
 
    font-weight: bold; 
 
    text-align: center; 
 
    font-size: 18px; 
 
    color: white; 
 
    padding: 18px; 
 
} 
 

 
p { 
 
    margin: 0; 
 
    padding: 0; 
 
}
<div class="text"> 
 
    <p ">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It 
 
    has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop 
 
    publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
 
</br> 
 
    <a class="ui-btn ">Sign up</a> 
 
</div>