When adjusting the opacity
value of a button in CSS, I have noticed that even when the opacity is reduced to 0.005
, the button remains clickable to some extent. However, when reducing the value to
0.000000000000000000000000000000000001
, the button becomes completely hidden and unclickable.
I suspect that this extremely small float is being rounded to 0
, causing the issue. I am concerned about cross-browser compatibility, as what works in one browser may not work in all browsers. Therefore, I need to determine the minimum value that will make the button clickable across ALL browsers.
Does anyone happen to know the universally tolerable minimum opacity value for all browsers?