admin管理员组文章数量:1346317
I have like to use tailwind css to position an image over another and I wonder how this can actually be done using mainly tailwind utility classes.
Now I am using:
style="top: 200px; left: 260px;"
Though it works but I have like to use tailwind classes such as
class="top-200 left-260"
I tried a couple of tailwind classes but I could not get it to work.
<div class="relative">
<div>
<img
class="absolute mt-5 ml-0"
src="@/assets/floor_image.jpg"
width="600"
/>
</div>
<div>
<img
src="@/assets/blue_golf.png"
style="top: 200px; left: 260px;"
class="cursor-pointer absolute"
/>
</div>
</div>
I have like to use tailwind css to position an image over another and I wonder how this can actually be done using mainly tailwind utility classes.
Now I am using:
style="top: 200px; left: 260px;"
Though it works but I have like to use tailwind classes such as
class="top-200 left-260"
I tried a couple of tailwind classes but I could not get it to work.
<div class="relative">
<div>
<img
class="absolute mt-5 ml-0"
src="@/assets/floor_image.jpg"
width="600"
/>
</div>
<div>
<img
src="@/assets/blue_golf.png"
style="top: 200px; left: 260px;"
class="cursor-pointer absolute"
/>
</div>
</div>
Share
Improve this question
edited Mar 21, 2021 at 10:07
Daryl Wong
asked Sep 6, 2020 at 4:05
Daryl WongDaryl Wong
2,4416 gold badges36 silver badges79 bronze badges
1 Answer
Reset to default 6You could remove all the other divs and keep just the relatively positioned parent div with the 2 absolute positioned images both set to top: 0 and left: 0 then give the second image a margin on top and left to position it staggered over the other one.
Tailwind preset classes go pretty high into the rem values for margin but if you need something more specific that TW does not e pre-packaged with you can always extend the default theme to add what you need.
<link href="https://unpkg./tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet" />
<div class="relative">
<img class="absolute top-0 left-0" src="https://picsum.photos/536/354" alt="Workplace" width="600" />
<img class="cursor-pointer absolute top-0 left-0 mt-32 ml-40 hover:shadow-outline" src="https://picsum.photos/535/354" width="600" />
</div>
版权声明:本文标题:javascript - Using absolute position to place image above another image using Tailwind CSS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830708a2546462.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论