我刚刚迁移到 bootstrap 3,显然我的页面被向左推了一点。我已经注释掉了所有东西,但是仍然有大约 20px 左右被推到左边(屏幕外)。以前有人经历过吗?我正在运行一个非常干净的 ASP.NET MVC4 站点(仅使用 bootstrap 和 jquery),那么可能是什么原因造成的呢?
这实际上是我所有的代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Index</title>
<link href="/Content/bootstrap/bootstrap.css" rel="stylesheet"/>
</head>
<body>
<div class="row">
<div class="well col-lg-12 col-md-12 col-sm-12">
<h2>Latest added</h2>
</div>
</div>
</body>
</html>