Is it possible to find out whether a browser supports a certain value for a particular CSS property? Something likefor example to check if the browser supports position:fixed. I know the above doesn't exist, but is there anything of the sort that can be done?Code:if (element.style.display.fixed) {do stuff}
