Skip to content

Instantly share code, notes, and snippets.

@jaimeiniesta
Last active December 19, 2015 10:49
Show Gist options
  • Save jaimeiniesta/5943571 to your computer and use it in GitHub Desktop.
Save jaimeiniesta/5943571 to your computer and use it in GitHub Desktop.
example of a site where HTML Inspector can't find the .row class
<!DOCTYPE html>
<head>
<link href="/assets/template/style.css?body=1" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="span8">
<h1 class="lead">
Hello!
</h1>
</div>
<div class="span4">
World!
</div>
</div>
</div>
</body>
</html>
/* -------------------------------------------------------- */
/* Twitter Bootstrap with Responsive media queries */
/* Custom override - max width of 1024px */
/* -------------------------------------------------------- */
@import url("/assets/template/bootstrap/bootstrap.css");
@import url("/assets/template/bootstrap-override.css");
.row {
margin-left: -20px;
*zoom: 1;
}
/* you get the idea... :) */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment