擴大元素點擊範圍(CSS)
2025-08-28
これは疑似要素の便利な使い方! レイアウトは変えずにクリックできるエリアを広げるCSSのテクニック | コリス
code:css
.icon-button {
position: relative;
}
.with-pseudo {
&::after {
content: '';
position: absolute;
inset: -0.5rem;
}
}
Tailwind CSS
可使用
touch-hitbox
CSS snippet