Different CSS for each browser?

前端 未结 3 1046
时光取名叫无心
时光取名叫无心 2020-11-29 08:33

Is there a way to load a different CSS file for a specific browser?

like (poor pseudo code):

if firefox


        
3条回答
  •  悲&欢浪女
    2020-11-29 09:25

    you can do this at the server end.

    if(Request.UserAgent is chrome){        
        //here output chrome stylesheet
    }
    

提交回复
热议问题