html - 向左浮动打破布局

标签 html css

我有点困在这里

https://jsfiddle.net/nap0qs3r/2/embedded/result/

我的布局被打破了,因为我在一个段落和一个 anchor 标记中使用了 float:left,我已经尝试清除两者,但根本不起作用。

HTML:

<section class="disclaimer">
  <div class="container">
    <p>
      LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM LOREM 
    </p>
    <a href="mailto:reservas@me.com">
        contato
    </a>
  </div>
</section>

CSS:

.container {
  box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 620px) {
  .container {
    padding-left: 4.8%;
    padding-right: 4.8%;
    max-width: 688px;
  }
}
@media only screen and (min-width: 800px) {
  .container {
    padding-left: 4.4%;
    padding-right: 4.4%;
    max-width: 1360px;
  }
}
.disclaimer {
  background: #f98835;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 400;
}
.disclaimer p {
  width: 100%;
  display: inline-block;
}
.disclaimer a {
  color: #fff;
  width: 100%;
  text-align: right;
}
@media only screen and (min-width: 620px) {
  .disclaimer p,
  .disclaimer a {
    float: left;
  }
  .disclaimer p {
    width: 80%;
  }
  .disclaimer a {
    width: 20%;
  }
}

我应该怎么做才能解决这个问题?

最佳答案

您可以使用 clearfix hack,它允许父级清除它的子级。将以下样式应用于父项 <div class="container">

content: "";
display: table;
clear: both;

这是一个工作 fiddle :

https://jsfiddle.net/nap0qs3r/5/

更多关于 clearfix 的信息:

http://css-tricks.com/snippets/css/clear-fix/

关于html - 向左浮动打破布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28641729/

相关文章:

javascript - 尽管横幅的大小是固定的,但 Adsense 仍显示空白广告

css - Highcharts 中的工具提示文本对齐方式为 'direction: rtl'

iOS:CSS3 动画中断 div 上的滚动

javascript - Jquery Mobile on() 函数不能替代我的实时函数

php - 返回未插入 mysql 表中的数据

html - 调整浏览器大小时CSS边框影响宽度

css - 不确定如何为我的导航栏修复我的 css

javascript - 如何使用基本 JavaScript 将数组中的数据插入 HTML

javascript - 如何在没有 jQuery 的情况下获取事件目标

html - 表列不显示在调整大小