我正在学习一些 twitter 引导程序概念。但是那个片段没有显示我期望的结果。问题出在品牌 div 内部。品牌类显示一个标题,但在我的浏览器中看起来不像基本网页。
这里有什么问题吗?
EDIT1 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="TVS.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width-device-width, initial-scale=1.0" />
<title></title>
</head>
<body>
<script src="js/bootstrap.js" type="text/javascript"></script>
<div class="navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="#" class="brand">Responsive</a>
<br />
<a class="brand" href="#">Project name</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="WebForm1.aspx">Home</a></li>
<li><a href="WebForm1.aspx">About us</a></li>
<li><a href="WebForm1.aspx">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>