When it comes to CSS, I have the following code implemented:
* {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
Despite this being effective in most browsers, it seems to not work properly in Internet Explorer. The text selection appears quite disorganized due to the fact that my menus are constructed using text and CSS. Is there a way to rectify this issue?