将 div 放置在图像的一角
所以我想将元数据 div 放置在每个帖子图像的角落,但所有图像的大小都不同。我该怎么做?
这是我需要的示例:
这是循环:
<div id="images">
<?php wp_get_attachment_image(); ?>
</div>
<div id="date">
<?php get_the_date(); ?>
</div>
我发布了这个 @ wordpress.stackexchange 但他们说张贴在这里
So I want to position my a meta-data div in the corner of every post image, but all the images are different sizes. How do I do this?
Heres an example of what I need:
This is the loop:
<div id="images">
<?php wp_get_attachment_image(); ?>
</div>
<div id="date">
<?php get_the_date(); ?>
</div>
I posted this @ wordpress.stackexchange but they said to post it here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
图像的大小并不重要。您必须为容器 div 指定一个
position:relative
,为角 div 指定一个position:absolute
,其中top:0
和left : 0
HTML:
*注意日期位于图像标签内!
CSS:
It doesn't matter what size the image is. You have to give the container div a
position:relative
and the corner div aposition:absolute
withtop:0
andleft:0
HTML:
*note date is inside the image tag!
CSS: