Replies: 6 comments 3 replies
-
I also need this for our webshop |
Beta Was this translation helpful? Give feedback.
-
@RobinSCU In the meantime, you may use a const plugin = require("tailwindcss/plugin");
module.exports = {
plugins: [
plugin(({ addUtilities }) => {
addUtilities({
".no-overflow-anchoring": {
overflowAnchor: "none",
},
});
}),
],
}; |
Beta Was this translation helpful? Give feedback.
-
any chance to get this added? |
Beta Was this translation helpful? Give feedback.
-
+1 |
Beta Was this translation helpful? Give feedback.
-
+1 |
Beta Was this translation helpful? Give feedback.
-
Would be very nice! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Sometimes, scroll anchoring can be destructive (e.g. on
contenteditable
HTML elements with a padding). I would like to propose adding ano-overflow-anchoring
utility for settingoverflow-anchor: none
easily.Beta Was this translation helpful? Give feedback.
All reactions