作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何水平对齐多张图像,一张一张地?它们不必适合宽度屏幕:相反,我希望它们超过后者的宽度,如果这有任何意义的话。
我已经检查了很多类似问题的答案,但找不到任何可以解决我的问题的答案。
HTML:
<div id="content">
<img src="Content/Images/Personal/Georges.jpg" alt="Georges" class="images" />
<img src="Content/Images/Personal/Rose.jpg" alt="Gers" class="images" />
<img src="Content/Images/Personal/Henry.jpg" alt="Providence" class="images" />
</div>
CSS:
.images
{
display: inline;
margin: 0px;
padding: 0px;
}
#content
{
display: block;
margin: 0px;
padding: 0px;
position: relative;
top: 90px;
height: auto;
max-width: auto;
overflow-y: hidden;
overflow-x:auto;
}
提前谢谢你。
最佳答案
实际上,您希望防止 inline
img
元素包装,因此,您希望在父 #content
上使用以下内容> 元素:
white-space:nowrap;
nowrap Collapses whitespace as for normal, but suppresses line breaks (wrapping).
此样式专门用于您需要的目的。
关于css - 如何水平对齐多个图像(连续)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25202348/
我是一名优秀的程序员,十分优秀!