Hi there,
I was wondering whether it was possible to use a specific CSS depending on the browser a user is using? If so, how is that achieved?
For example, I currently have a stylesheet (let's call it stylesheet A) that specifically styles Internet Explorer 8, I have another stylesheet (stylesheet b) that styles Internet Explorer 11. How would I be able to get stylesheet A to be read and applied to IE 8 and Stylesheet and applied to IE 11? Do I just use something like:
if (kendo.support.*) {
// Do something
}
Thank you in advance!