0

我必须对我的列表项应用 clearfix 以便边框环绕我的浮动,但是一旦我添加了 clearfix,它会导致我应用到列表的自动换行停止工作,现在长 URL 将 div 扩展到其他分区。

如果有人可以帮助解决这个问题,将不胜感激。可以在此处查看该问题:http ://www.noellesnotes.com(页脚的推文部分)。

这是相关代码:

HTML

<div id="tweets">
    <ul>
        <li class="clearfix">
            <p class="tweet">The tweet.</p>
            <p class="timePosted">TIME</p>
            <p class="interact">INTERACT LINKS</p>
        </li>
    </ul>
</div>

CSS

.tweet, .tweet a, .tweet span, .interact a{
    margin-bottom: 10px;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif, Georgia, sans-serif;
    word-wrap:break-word;
}

.timePosted{
    width:40%;
    font-size: 12px;
    float: left;
    font-weight: bold;
    text-align: left;
}

.interact{
    width:60%;
    font-size: 12px;
    float: left;
    text-align: right;
    overflow: hidden;
}

.interact a{
    margin-right: 3px;
    text-decoration: underline;
    font-family: 'Arvo', Georgia;
}

#tweets ul{
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

#tweets ul li{
    border: 3px solid rgba(255,255,255,0.4);
    margin: 3px 0;
    padding: 3px;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {   /* for IE/Mac */
    display: inline-block;
}
4

1 回答 1

2

添加:

#tweets ul li { width: 100%; }

为我解决了这个问题:)

于 2014-01-19T18:35:40.840 回答