浮动div没有正确浮动

时间:2012-01-09 22:33:35

标签: css html css-float

这是我在这里的第一篇文章,当我在我的智慧结束时,我想我会跳进去,最后寻求一些帮助!

我在我正在设计的网站上有一个“联系我们”部分,其中包含一个关于我们的小段,电子邮件和电话。旁边有一个我从php表单构建器获得的电子邮件联系表单。一切都在游动,直到我把那个坏男孩扔进去。

Anywho这是我的联系我们'包装'的代码:

#contact {
 background-image:url(img/contact_bg.jpg);
 background-repeat: no-repeat;
 width: 820px;
 height: 459px;
 margin: 25px 70px 50px 70px;
 clear: both;
 }

#thanks {
 width: 324px;
 height: 100px;
 padding-top: 35px;
 }

#thanks span {
  font-size: 1.5em;
  font-weight: normal;
  font-style: italic;
  letter-spacing:1px;
  color: #ffffff;
  text-shadow: 1px 1px 1px #000000;
  text-decoration: none;
  padding: 0 0 0 25px;
 }

#details {
 width: 324px;
 height: 63px;
 padding-top: 25px;
 clear: both;
  }

#details span {
 font-size: 1.115em;
 font-weight: normal;
 font-style: italic;
 letter-spacing:1px;
 color: #ffffff;
 text-shadow: 1px 1px 1px #000000;
 text-decoration: none;
 padding: 0 0 0 25px;
 clear: both;
 }

#about {
 width: 324px;
 clear: both;
 }

#about h2 {
 font-size: 1.618em;
 font-weight: normal;
 letter-spacing:1px;
 color: #ffffff;
 text-shadow: 1px 1px 1px #000000;
 padding-left: 25px;
 text-decoration: none;
 clear: both;
 }

#about span {
 font-size: 1em;
 font-weight: normal;
 letter-spacing:1px;
 color: #ffffff;
 text-shadow: 1px 1px 1px #000000;
 line-height: 14px;
 text-decoration: none;
 padding: 10px 0 0 25px;
 clear: both;
 }

这是我的表格css:

  #form {
   margin:0 auto;
   text-align:left;
   width:391px;
   height: 459px;
   float: right;
   }

  form.appnitro {
   margin:20px 20px 0;
   padding:0 0 20px;
   }

以下是一些截图:

这应该是这样的:expected 这就是它现在的样子:( actual

非常感谢任何帮助,如果您需要更多信息,请告诉我。

非常感谢!

2 个答案:

答案 0 :(得分:1)

您的#thanks#about已浮动,因此您的联系表格虽然已浮动,但仍会显示在其下方。您需要浮动#thanks#about float:left

您还有很多clear:both会重置文档流程,可能会导致您遇到的一些问题。如果没有看到实际的HTML,很难说。

答案 1 :(得分:0)

您需要做的就是在左手内容周围放置另一个div并将其向左浮动,就像这样

<div style="float:left">
    <div id="thanks">
        <span>Thank you for your interest in Dan James construction. Please contact us using a method convenient for you.</span>
    </div>

    <div id="details">
        <span>Tel: 07749 121959</span>
        <span>Email: info@danjamesconstruction.com</span>
    </div>

    <div id="about">
        <h2>ABOUT US</h2>
        <span>Dan James construction are specialists in loft 
conversion based in North London and covering the whole of the M25 area.</span><span>We guide you through every stage of your 
development journey, right from the no obligation FREE estimate to the fine finishing touches.</span><span>So whether you're looking for more space or looking to add value get in touch today to start your very own conversion</span>
    </div>

</div>

这应该有用,让我知道它是怎么回事; - )