gpt4 book ai didi

css - Tailwindcss - 如何在组悬停实用程序中添加上/下/右/左

转载 作者:行者123 更新时间:2023-12-04 12:29:04 24 4
gpt4 key购买 nike

<img>标签和 <button>标签在 div .使用 group在 div classNamegroup-hover:opacity-0img标签,它工作正常,但 group-hover:top-1/2<button>标签不起作用。

<div className="group relative bg-white">
<img
src={restaurant}
alt="A website image."
className="group-hover:opacity-0"
/>
<button
className="absolute -top-96 group-hover:top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
>
LEARN MORE
</button>

我在 tailwind.config.js 上添加了给定的代码.
module.exports = {
// ...
variants: {
extend: {
top: ['group-hover'],
}
},
}
我该如何解决这个问题????

最佳答案

更改 top在您的配置中添加到 insetdocs

You can control which variants are generated for the top, right, bottom, left, and inset utilities by modifying the inset property in the variants section of your tailwind.config.js file.

module.exports = {
// ...
variants: {
extend: {
inset: ['group-hover'],
}
},
}
注:如果您使用 Tailwind v2.1+ 和 mode: 'jit'它应该在不需要额外变体的情况下即时生成

关于css - Tailwindcss - 如何在组悬停实用程序中添加上/下/右/左,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68093392/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com