+ 9
Can we make two designs for an simple web page One which support outdated browser Second which support latest browser.
suppose we have created an webpage and wants to add two different designs. Design one for those visitors who have outdated browser eg :-internet explorer. Design second for those who have latest browser eg:- Microsoft edge. The designs are loaded automatically according to visitor's browser. How can we do so... Can we do so via help of CSS or other language is needed?
2 Respostas
+ 7
A common trick is to load style sheets depending on the browser and its version.
https://www.quirksmode.org/css/condcom.html
+ 8
Thanks