文字与P标签重叠

时间:2018-12-13 13:07:39

标签: html css bootstrap-4

我在<p>标记中有一些文本,但是文本没有适当地换行,因此超出了父<div>的宽度。

不确定我是否错过了以前从未遇到过的确实很明显的东西,但是已经在代码段中重新创建了。

.row {
  background: #f8f9fa;
  margin-top: 20px;
}

.col {
  border: solid 1px #6c757d;
  padding: 10px;
}

h4 {
  text-align: center;
  color: #0e2753;
}

.btn--vehicle-condition {
  text-align: center;
  width: 100%;
  background-color: #f1f1f1;
  border-radius: 3px;
  padding-top: 15px;
  margin-bottom: 30px;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/>
<!-- 
  Bootstrap docs: https://getbootstrap.com/docs
-->

<div class="container">
  <div class="row">
    <div class="col 12 col-md-6">
      <div class="btn btn--vehicle-condition">
        <h4>
          Preowned
        </h4>
        <p>
          A bit of information about what 'Preowned' means and how it affects the buyer.
        </p>
      </div>
    </div>
    <div class="col 12 col-md-6">
      <div class="btn btn--vehicle-condition">
        <h4>
          New
        </h4>
        <p>
          A bit of information about what 'New' means and how it affects the buyer.
        </p>
      </div>
    </div>
  </div>  
</div>

我看过其他一些类似的帖子,例如this one,但在他们看来,这是因为文本中没有空格,在这里不是这种情况。 / p>

1 个答案:

答案 0 :(得分:0)

您需要添加CSS  .btn p {white-space:normal}

`https://jsfiddle.net/asimshahiddIT/gpna5fyv/3/`