CSS - 绝对位置和位置文件流
是的,我知道不适用于绝对位置,但是有没有办法显示“下面”的元素(在代码中之后)而不是在它们后面?
示例:
<img src="image.jpg" style="width: 500px; height: 400px; position: absolute; top: 0;" />
<h2 style="padding: 15px" >This text is behind not below the image</h2>
有没有办法将 h2 显示在图像下方,除了将其绝对定位?
示例:
(是的,我有 在我的例子中使用绝对,以及下面的动态边距内容,我迷失了:D)
Yes, I know doesn't work with position absolute, but is there a way to display elements "below" (after in code) not behind them?
Example:
<img src="image.jpg" style="width: 500px; height: 400px; position: absolute; top: 0;" />
<h2 style="padding: 15px" >This text is behind not below the image</h2>
Is there a way of displaying the h2 below the image excepting positioning it absolutely too?
Example:
(yes, I have to use absolute in my case, and dynamic margined content below, and I'm lost :D)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
很简单,去掉绝对位置即可。 (已测试)
如果未定义对象,它将自动转到其邻居的右侧或下方
Simple , just remove position absolute . (tested)
If an object is not defined it will automatically go to the right of its neighbour or below
将图像和标题包装在绝对块中怎么样?此解决方案将标题放在图像后面,因为默认情况下 h2 是一个块,并且您的内容仍然是绝对定位的。
How about wrapping the image and the title in an absolute block? This solution puts the title after the image because h2 is a block by default and your content is still absolutely positionned.
我能够执行您所要求的操作的唯一方法是设置
h2
的top
属性,也就是将文本定位在图像之后。 Fiddle.PS:
position:block
不存在。仅绝对
、相对
、静态
和固定
。The only way I was able to do what you are asking is setting the
top
property ofh2
, aka positioning the text after the image. Fiddle.PS:
position:block
doesn't exist. Onlyabsolute
,relative
,static
, andfixed
.对于 h2:
指定等于图像高度的上边距。
例如。
For h2:
specify a top margin equal to the height of your image.
eg.