如何更改<br/>和<span>元素的行高?

时间:2016-05-12 07:51:59

标签: html css

下面的代码在某些文本之间添加了一些文本之间的额外空间。

  • 为什么<br>some text之间的again some text元素的高度不是0。我尝试了line-height: 0height: 0

  • 第二个span元素的文字未采用20px行高,为什么?

注意:请不要告诉如何解决问题。我只想知道为什么line-heightinline这样的span元素运行。

.container {
  border: 1px solid black;
}
.one {
  line-height: 12px;
  font-size: 10px;
  vertical-align: top;
}
.two {
  line-height: 20px;
  vertical-align: bottom;
  font-size: 10px;
}
br {
  line-height: 0;
  height: 0;
  display: block;
}
<div class="container">
  <span class=one>
    some text <br>
    agian some text <br>    
  </span>
  
  <span class="two">
    hip hop
  </span>
  
</div>

3 个答案:

答案 0 :(得分:0)

spandisplay:inline元素,您可能需要display: inline-block才能看到您的更改。

检查以下内容:

.container {
  border: 1px solid black;
}
.one {
  display: inline-block;
  line-height: 12px;
  font-size: 10px;
  vertical-align: top;
  background-color: grey;
}
.two {
  display: table-cell;
  height: 30px;
  vertical-align: bottom;
  font-size: 10px;
  background-color: red;
}
br {
  line-height: 0;
  height: 0;
  display: block;
}
<div class="container">
  <span class=one>
    some text <br>
    agian some text <br>    
  </span>
  <br>
  <span class="two">
    hip hop
  </span>

</div>

答案 1 :(得分:0)

您可以通过在内容中添加适当的标记来改进代码

<div>
    <p class='one'>
        <span >
            - Text Content</span>
        <span >
            - Text Content</span>
    </p >
    <p class='two'>
        <span>
            - Text Content</span>
        </p>
</div>

并在.one display:blockmargins

之内做出适当的css。

答案 2 :(得分:-2)

您不应该标记- (void) paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue { if( queue.transactions.count == 0 ) { }else { // Get product Id Already Restored } } 代码,但如果您想了解为何选中it here

另请阅读有关框大小调整here

的信息

如果您希望将第二个<br>高度设置为20px,请使用span属性