internet explorer - Using Bootstrap on IIS -


trying test bootstrap. simple html code works on computer, yet when put on web site, not work ie9 (works on chrome). there special iis settings or there problem ie? if there problem ie why work correctly when html page run computer?

<!doctype html> <html lang="en"> <head> <link href="assets/css/bootstrap.css" rel="stylesheet"> <!-- le html5 shim, ie6-8 support of html5 elements --> <!--[if lt ie 9]> <script src="assets/js/html5shiv.js"></script> <![endif]--> <meta http-equiv="x-ua-compatible" content="ie=edge"> </head><body> <div class="btn-group"> <button class="btn">left</button> <button class="btn">middle</button> <button class="btn">right</button> </div> </body> </html> 

i did not find answer directly found bunch of similar questions asp websites hosted on iis. talked being wrong links css , either need remove minified (.min) files or directly link them.

i removed of .min files because not use them , far works.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -