Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I don't use bundles for Bootstrap (as an exception), but its minified versions, so this works for me:</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;!--[if lt IE 7]&gt; &lt;html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"&gt; &lt;![endif]--&gt; &lt;!--[if IE 7]&gt; &lt;html class="no-js lt-ie9 lt-ie8" lang="en"&gt; &lt;![endif]--&gt; &lt;!--[if IE 8]&gt; &lt;html class="no-js lt-ie9" lang="en"&gt; &lt;![endif]--&gt; &lt;!--[if gt IE 8]&gt;&lt;!--&gt;&lt;html class="no-js"&gt;&lt;!--&lt;![endif]--&gt; &lt;head&gt; &lt;meta charset="utf-8"&gt; &lt;meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"&gt; &lt;title&gt;@ViewBag.Title&lt;/title&gt; &lt;link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" /&gt; &lt;meta name="viewport" content="width=device-width"&gt; &lt;link rel="stylesheet" href="@Url.Content("~/Content/bootstrap.min.css")"&gt; &lt;style&gt; body { padding-top: 60px; padding-bottom: 40px; } &lt;/style&gt; &lt;link rel="stylesheet" href="@Url.Content("~/Content/bootstrap-responsive.min.css")"&gt; @Styles.Render("~/Content/less") @Scripts.Render("~/bundles/modernizr") &lt;/head&gt; &lt;body&gt; </code></pre> <p>The part with the inline style is from <a href="http://www.initializr.com/" rel="nofollow">http://www.initializr.com/</a> for the top NavBar, if you don't need it, just remove.</p> <p>Alternatively, you can do the same in your styles.css file:</p> <pre><code>@import url('bootstrap.min.css'); body { padding-top: 60px; padding-bottom: 40px; } @import url('bootstrap-responsive.min.css'); You CSS Code below </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload