-
div { pointer-events: none; position: relative; } div::after { contents: ''; border: 1px black solid; border-radius: 5px; pointer-events: all; bottom: 0; }
<div onclick="buttonFunction();" />
תמיד יווצר בתחתית האלמנט פסאודו-אלמנט שנראה כמו כפתור, וכל אוונט שתצמיד לclick של האלמנט יקרה כשתלחץ על הכפתור.
-