这就是我想要实现的目标
CONTAINER -------------------------------------------------------------- | CENTERED in CONTAINER | | ----------------------------------------- ---------- | | | Content Div | | Info Div | | | | shrink to contents OR | | shrink to| | | | max size: (container width - info div ) | | contents | | | | | ---------- | | ----------------------------------------- | | | | ------------------------------------------------------ | | | text div: width = width of content div + info div | | | ------------------------------------------------------ | --------------------------------------------------------------
图片(粗略MSPAINT):small content example和large content example
DIV INFO:最多192像素,但必要时应缩小。
DIV内容:缩小内容。如果内容很大,则width =容器中的剩余空间。
DIV TEXT:width = CONTENT的宽度+ INFO的宽度。
这是我到目前为止所拥有的。我不使用浮点数,因为我希望内容和信息div在页面上整体居中。
我遇到的问题是:
#container {
width: 80%;
min-width: 760px;
padding-top: 0;
margin: 0 auto;
}
#content {
max-width: 71%; /* Kinda solves the problem of bumping info div
to next line, but leave awkward gaps */
width: auto;
vertical-align: top;
display: inline-block;
}
#info {
width: auto;
vertical-align: top;
text-align: left;
display: inline-block;
}
#text {
margin: 10px auto;
width: auto;
display: block;
text-align: left;
}
<div id="container">
<div id="main">
<div id="content"><img src="image.jpg" />Lorem ipsum ...</div>
<div id="info">Lorem ipsum dolor</div>
<div id="text">Lorem ipsum ...</div>
</div>
</div>
答案 0 :(得分:5)
答案 1 :(得分:3)
答案 2 :(得分:1)
要使#text width等于Content + Info宽度,您需要将#content,#info,#text与另外一个div包装起来。