Skip to content

Instantly share code, notes, and snippets.

@kwivix
Created March 1, 2012 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwivix/1948542 to your computer and use it in GitHub Desktop.
Save kwivix/1948542 to your computer and use it in GitHub Desktop.
input.span12 not responsive
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Input span demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">Project name</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<form class="form form-vertical">
<fieldset>
<input type="text" class="span12" placeholder="this is an input with .span12 (without a row)">
</fieldset>
</form>
<div class="row">
<div class="span12">
<form class="form form-vertical">
<fieldset>
<input type="text" class="span12" placeholder="this is an input with .span12 (with a row.span12)">
</fieldset>
</form>
</div>
</div>
</div> <!-- /container -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment