2013-07-28 86 views

回答

0

在您使用导致换行符所以这里<br></br>标签之间3输入字段的页面是我改变,并认为解决您的问题

<div class="wpcf7" id="wpcf7-f352-p353-o1"><form action="/contact-us/#wpcf7-f352-p353-o1" method="post" class="wpcf7-form" novalidate="novalidate"> 

<div style="display: none;"> 
... 
</div> 

<div id="inner-contact"> 

<span class="wpcf7-form-control-wrap first-name"> 
    <input name="first-name" ... " type="text"> 
</span> 
**[Omit <br></br>]** 

<span class="wpcf7-form-control-wrap last-name"> 
    <input name="last-name" ... type="text"> 
</span> 
**[Omit <br></br>]** 

<span class="wpcf7-form-control-wrap email"> 
    <input name="email" ... type="email"> 
</span> 
</div> 
... 
</div> 
</form> 
</div> 

另外我看到你的第2个字段有margin-top:6px;margin-bottom:20px;财产,但第三场有margin-top:3px;margin-bottom:10px;
所以修正第三场的属性就像两个其他领域,它会没事的。

+0

果然,愚蠢的插件添加了
之间的行。你也添加了利润率也是正确的。我能够覆盖样式,一切似乎都没问题。非常感谢!!! – ogmios

0

也许这将帮助,

jsFiddle

.small{ 
    border:1px solid black; 
    float:left; 
    height:20px; 
    width:50px; 
    margin-right:20px; 
} 
.big 
{ 
    border:1px solid black; 
    float:left; 
    clear:left; 
    height:200px; 
    width:194px; 
    margin-top:20px; 
} 

<div> 
    <div class="small"></div> 
    <div class="small"></div> 
    <div class="small"></div> 
    <div class="big"></div> 
</div>