-3

好的,这是我的 <style> 的代码。应该概述的框不起作用,它只是在上面。

另外,我想知道如何让我的背景完全变黑

<div id="header">

    </h1>
    <style>
    #header {text-align:middle}
    .info-container {width: 840px; border: 1px solid #d8d5c6: padding: 4px; margin: 40px auto 0;}

    .inner-border {background-color: #fcfbf9; border: 1px solid #d8d5c6; padding: 10px 20px;}

    .coming-soon-visitor strong, .coming-soon-owner strong {font-weight: bold; color: #000;}

    .coming-soon-owner {float: left; font-size: 14px; color: #6d6a5b; font-weight: normal; width: 400px; border-right: 1px solid #d9d6c5; padding: 10px 0; margin-bottom: 10px;}

    .coming-soon-visitor {float: left; font-size: 14px; color: #6d6a5b; font-weight: normal; padding-left: 20px; padding: 10px 0 10px 20px; margin-bottom: 10px;}

    </style>
    <div class="info-container">
        <div class="inner-border clear-fix">
            <h3 class="coming-soon-owner">
                Coming <strong>soon!</strong>
            </h3>
            <h3 class="coming-soon-visitor">

            Hey! We are programming! <strong>Please </strong>wait!

            </h3>
        </div>
    </div>
4

2 回答 2

0

通过查看代码,我会说您有一个浮动 div 的简单案例。没有什么是clearfix不能照顾的。

我使用在这里找到的可以这样总结的那个。

.group:after {
  content: "";
  display: table;
  clear: both;
}

将其添加到您.info-container应该解决您的问题。

于 2012-12-21T19:09:16.443 回答
0

将此添加到.inner-border类:

padding-bottom: 50px; 
background-color: grey;

并删除开头的背景颜色

于 2012-12-21T19:25:13.553 回答