My webpage https://skyeshepherdhuts.co.uk appears so broken in Internet Explorer 11 that I would like to show it unstyled when IE <= 11 is being used. With earlier versions of IE, I would have used IE conditional comments, but of course I cannot do so with IE10-IE11. How should I proceed? Or should I just ignore the problem?
Use Javascript to sniff the user agent string.
If the string contains "MSIE" it's an older version of IE, and if it contains "Trident" it's a newer version. This page has a list of the user agent strings for various versions of IE on various operating system versions.
When the Javascript runs, if IE is not detected then add a class to the body element. In your CSS, make all your style rules dependent on that class being present.
What's the benefit of doing this though? How many of your website visitors are browsing with Internet Explorer?