上面的CSS文本框也请背景代码

时间:2012-12-21 19:02:16

标签: html css

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

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

<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>

2 个答案:

答案 0 :(得分:0)

从查看代码我会说你有一个简单的浮动div案例。 clearfix无法解决这个问题。

我使用可以这样总结的那个found here

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

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

答案 1 :(得分:0)

将此添加到.inner-border类:

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

并删除

开头的背景色