Skip to content

Instantly share code, notes, and snippets.

@ronsun
Last active November 6, 2018 04:54
Show Gist options
  • Save ronsun/cc48b999abaaee8c3136272cd2d9341c to your computer and use it in GitHub Desktop.
Save ronsun/cc48b999abaaee8c3136272cd2d9341c to your computer and use it in GitHub Desktop.
RWD for IE8 or earlier
	//Detect Browser version and Support IE
    if(Request.Browser.Type.ToUpper().Contains("IE")){
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <script src="~/Content/html5shiv/js/html5shiv.min.js"></script>
        <script src="~/Content/respond/js/respond.min.js"></script>
    }

HTML5Shiv : 讓IE9以前的瀏覽器支援HTML5元素

Respond : 另外一個必要的套件

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment