有人可以告诉我为什么我的引导网站无法在所有设备上运行吗?
当我从电脑上查看时,它看起来很好。当我从一个同事的电脑上看它时,看起来所有的css都是带条纹的而且它没有使用引导带,就像我从iphone 5中查看它一样。
这是我的母版页的头部
<head runat="server">
<title>Flashpoint P.O.S.</title>
<link href="../Content/bootstrap.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="../Content/Styles.css" rel="Stylesheet" type="text/css" />
<script src="../Scripts/jquery-2.1.3.min.js" type="text/javascript"></script>
<script src="../Scripts/bootstrap.js" type="text/javascript"></script>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
<script>
$(document).ready(function () {
$(document.body).css('padding-top', $('#navList').height() + 10);
$(window).resize(function () {
$(document.body).css('padding-top', $('#navList').height() + 10);
});
});
</script>
</head>
Here is the link to the broken site
编辑:我刚刚注意到它在firefox中工作正常,但在生产环境中不适用于Chrome。 (已发布链接)但它在开发环境中都有效(ms vs 2010)
另一个奇怪的事情,我可以在Firefox上导航到http://easystoremanager.com/Trim/Images/contactus.jpg而不是Chrome?
有什么想法吗?