我上传了部分屏幕
它是论坛的一部分,因此它上面和下面都有元素。 “响应请求日期”具有标签,日期选择器和两个下拉选择控件的时间。我尝试设置datepicker元素的宽度和右边距,以便时间选择器位于它旁边。但它总是低于它。
<div class="wrapper ">
<label for="responseRequiredDate">
Response Required Date
<span class="indicator">*</span>
</label>
<input type="hidden" name="responseRequiredDate" value="struct" /><div class="datetimepicker">
<div class="datePicker">
</div>
<script> ...</script>
<div class="timepicker"><select ....
</div> </div>
日期选择器插入脚本标记会导致问题。可能不是。
来自firebug的计算css如下。目前唯一不同于继承的样式是display:inline ..我试过float,clear,margin等没有成功。所以删除它们是为了清楚。
datePicker :
font-family verdana,arial,helvetica,sans-serif
font-size 12.8px
font-weight 400
font-style normal
color #222222
text-transform none
text-decoration none
letter-spacing normal
word-spacing 0
line-height 20.7833px
text-align start
vertical-align baseline
direction ltr
Background
background-color transparent
background-image none
background-repeat repeat
background-position 0 0
background-attachment scroll
opacity 1
Box Model
width auto
height auto
top auto
right auto
bottom auto
left auto
margin-top 0
margin-right 0
margin-bottom 0
margin-left 0
padding-top 0
padding-right 0
padding-bottom 0
padding-left 0
border-top-width 0
border-right-width 0
border-bottom-width 0
border-left-width 0
border-top-color #222222
border-right-color #222222
border-bottom-color #222222
border-left-color #222222
border-top-style none
border-right-style none
border-bottom-style none
border-left-style none
Layout
position static
display inline
visibility visible
z-index auto
overflow-x visible
overflow-y visible
white-space normal
clip auto
float none
clear none
-moz-box-sizing content-box
Other
cursor auto
list-style-image none
list-style-position outside
list-style-type disc
marker-offset auto
Timepicker:
font-family verdana,arial,helvetica,sans-serif
font-size 12.8px
font-weight 400
font-style normal
color #222222
text-transform none
text-decoration none
letter-spacing normal
word-spacing 0
line-height 20.7833px
text-align start
vertical-align baseline
direction ltr
Background
background-color transparent
background-image none
background-repeat repeat
background-position 0 0
background-attachment scroll
opacity 1
Box Model
width auto
height auto
top auto
right auto
bottom auto
left auto
margin-top 0
margin-right 0
margin-bottom 0
margin-left 0
padding-top 0
padding-right 0
padding-bottom 0
padding-left 0
border-top-width 0
border-right-width 0
border-bottom-width 0
border-left-width 0
border-top-color #222222
border-right-color #222222
border-bottom-color #222222
border-left-color #222222
border-top-style none
border-right-style none
border-bottom-style none
border-left-style none
Layout
position static
display inline
visibility visible
z-index auto
overflow-x visible
overflow-y visible
white-space normal
clip auto
float none
clear both
-moz-box-sizing content-box
Other
cursor auto
list-style-image none
list-style-position outside
list-style-type disc
marker-offset auto
答案 0 :(得分:1)
您应该将这些div框显示为内联元素:
.datePicker, .timepicker {
display: inline;
}
答案 1 :(得分:1)
好吧,一个没有浮动的div将始终将下一个内容推到自己的下方。您可以尝试在div上设置display:inline,或者将其设置为span。
答案 2 :(得分:0)
display: inline;
应该解决您的问题。