我正在尝试获取一个容器div,它将水平滚动到视口之外。有点像全屏幻灯片,开头是#a
,最后是#c
。 #a
和#c
都是固定宽度div,#b
具有动态宽度图像内容。我遇到的问题是让#container
动态更改其宽度以容纳#b
。将#container
宽度设置为自动或100%仅使用视口宽度。
我在追求的是什么:
[- viewport width -]
--#container---------------------------------------
| -------------------------------------------- |
| | #a | #b... | #c | |
| -------------------------------------------- |
---------------------------------------------------
我的标记:
#container {
height:400px;
}
#a {
float:left;
width:200px;
height:400px;
}
#b {
float:left;
width:auto;
height:400px;
}
#c {
float:left;
width:200px;
height:400px;
}
<div id="container">
<div id="a">fixed width content</div>
<div id="b">dynamic width content</div>
<div id="c">fixed width content</div>
</div>
编辑:我可以使用表格执行此操作,但如果可能,请尽量避免使用。
编辑2:以下是使用表格的工作版本:
#container {
height:400px;
background:#fff;
}
#a {
width:200px;
height:400px;
background:#ccc;
}
#b {
height:400px;
background:yellow;
white-space: nowrap;
}
#c {
width:200px;
height:400px;
background:#ccc;
}
<table cellpadding="0" cellspacing="0">
<tr>
<td id="a">
a
</td>
<td id="b">
<img src="..." />
<img src="..." />
<img src="..." />
</td>
<td id="c">
b
</td>
</tr>
</table>
答案 0 :(得分:6)
<div id="container">
<div id="a">fixed width content</div>
<div id="b">
<img src="http://karenrothart.com/yahoo_site_admin/assets/images/Landscape_Panorama.13130817_large.jpg" />dynamic width content dynamic width content dynamic width content dynamic width content
</div>
<div id="c">fixed width content</div>
</div>
这是一个很好的CSS:
div {
height: 400px;
}
#container {
position: relative; /* needed for absolutely positioning #a and #c */
padding: 0 200px; /* will offset for width of #a and #c; and center #b */
border: green 3px dotted; /* just for the show */
float: left; /* To dynamicaly change width according to children */
}
#a, #b {
position: absolute; /* causes #a and #b to not respect padding of #container and also gives it its place */
top: 0;
width:200px;
left: 0;
}
#c {
right: 0;
}
漂亮而有光泽的例子:http://jsfiddle.net/KefJ2/
如果您需要多张图片而不是添加此图片:
#b {
white-space: nowrap; /* causes all direct child elements to be in one line */
}
包含更多图片的示例:http://jsfiddle.net/KefJ2/1/
显然你必须在#b
中使用文本和图像布局,但这应该很容易:)