如何在 CSS 中创建列宽,使其随着大图像扩展而保持正常大小内容的默认大小?
我正在创建一个具有一列布局的 HTML5 网页。基本上,它是一个包含个人帖子的论坛主题。
我已在 CSS 文件中指定该列的宽度为 600 像素,并使用 margin: 0 auto;
将其在窗口中居中。但是,个别帖子中的某些图像大于 600 像素并溢出到列之外。
我想扩大单个帖子以适应更大的图像。但是,我希望所有其他帖子的宽度仍为 600 像素。
现在,我只是使用 overflow:auto
来创建一个滚动条,但这并不理想。是否可以让单个帖子的宽度针对较大的内容而增长,而对于正常的内容则保持固定?仅使用纯 CSS 可以吗?
提前致谢!
I am creating an HTML5 web page with a one column layout. Basically, it is a forum thread with individual posts.
I have specified in my CSS file the column to be 600px wide and centered it in the window using margin: 0 auto;
. However, some images that are in the individual posts are larger than 600px and spill out of the column.
I'd like to widen an individual post to fit the larger images. However, I want all the other posts to still be 600px wide.
Right now, I'm just using overflow:auto
which will create a scroll bar, but this is less than ideal. Is this possible to have the an individual post width grow for larger content yet stay fixed for normal content? Is this possible using just pure CSS?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用
min-width: 600px
而不是width
,尽管它在旧版本的 Internet Explorer 中不起作用。try using
min-width: 600px
instead ofwidth
, though it won't work in old versions of internet explorer.您可以在包含您的帖子的 div 上使用 display:table。您可以通过以下示例标记看到效果:
当然,这在版本 8 下的 IE 中不起作用。
You can use display:table on divs that contain your posts. You can see the effect with this example markup:
Of course this will not work IE under version 8.