bootstrap-01 -- /2.3.0/css/bootstrap-combined.min.css
Ref: w w w . revillweb .com / tutorials/twitter-bootstrap-tutorial/
demosthenes . info / blog / 814 /CSS-Level-4-And-More-Whats-Coming-In-2014
http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-combined.min.css (important)
<!DOCTYPE html>
<head>
<title>Twitter Bootstrap Tutorial - A responsive layout tutorial</title>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-combined.min.css" rel="stylesheet">
<style type='text/css'>
body {
background-color: #CCC;
}
</style>
</head>
<body><div class="container">
<h1>TWITTER BOOTSTRAP TUTORIAL</h1>
<div class='navbar navbar-inverse'>
<div class='navbar-inner nav-collapse' style="height: auto;">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Page One</a></li>
<li><a href="#">Page Two</a></li>
</ul>
</div>
</div>
<div id='content' class='row-fluid'>
<div class='span9 main'>
<h2>Main Content Section</h2>
<p>some inline CSS of height: auto;. This is telling bootstrap that when the page is viewed within a browser, that has a window size of less that 979px it will provide a compressed alternative view.<p>
<p>Within the body tags, create a division element with a class of container. This will act as the pages main wrapper where we will place all our other HTML code.</p>
</div>
<div class='span3 sidebar'>
<h2>Sidebar</h2
<ul class="nav nav-tabs nav-stacked">
<li><a href='#'>Another Link 1</a></li>
<li><a href='#'>Another Link 2</a></li>
<li><a href='#'>Another Link 3</a></li>
</ul>
</div>
</div>
</div></body>
</html>
demosthenes . info / blog / 814 /CSS-Level-4-And-More-Whats-Coming-In-2014
http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-combined.min.css (important)
<!DOCTYPE html>
<head>
<title>Twitter Bootstrap Tutorial - A responsive layout tutorial</title>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-combined.min.css" rel="stylesheet">
<style type='text/css'>
body {
background-color: #CCC;
}
</style>
</head>
<body><div class="container">
<h1>TWITTER BOOTSTRAP TUTORIAL</h1>
<div class='navbar navbar-inverse'>
<div class='navbar-inner nav-collapse' style="height: auto;">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Page One</a></li>
<li><a href="#">Page Two</a></li>
</ul>
</div>
</div>
<div id='content' class='row-fluid'>
<div class='span9 main'>
<h2>Main Content Section</h2>
<p>some inline CSS of height: auto;. This is telling bootstrap that when the page is viewed within a browser, that has a window size of less that 979px it will provide a compressed alternative view.<p>
<p>Within the body tags, create a division element with a class of container. This will act as the pages main wrapper where we will place all our other HTML code.</p>
</div>
<div class='span3 sidebar'>
<h2>Sidebar</h2
<ul class="nav nav-tabs nav-stacked">
<li><a href='#'>Another Link 1</a></li>
<li><a href='#'>Another Link 2</a></li>
<li><a href='#'>Another Link 3</a></li>
</ul>
</div>
</div>
</div></body>
</html>
评论
发表评论