在div之外流动的段落

时间:2012-12-22 19:05:35

标签: css html alignment footer

我正试图在这里说出一个页脚:http://css-tricks.com/left-align-and-right-align-text-on-the-same-line/

问题是2段被放置在页脚下方,好像它们在div中没有​​定义。这是我的代码:

<div id="footer" style="clear: both;">
  <p class="alignleft">left</p>
  <p class="alignright">right</p>
</div>

的CSS:

div#footer{
    height: 20px;
    padding: 0px 10px;
    line-height: 20px;
    clear: both;
}
.alignleft {
    float: left;
}
.alignright {
    float: right;
}

2 个答案:

答案 0 :(得分:2)

在容器overflow: hidden;上使用div清除不使用height

的花车

Demo

CSS

div#footer {
   padding: 0px 10px;
   line-height: 20px;
   overflow: hidden;
}

答案 1 :(得分:0)

高度值应该是自动

CSS

#footer{
   height: auto;
   padding: 0px 10px;
   line-height: 20px;
   **word-wrap: break-word;**
}