Skip to content

Instantly share code, notes, and snippets.

@Opus1no2
Created November 28, 2018 15:31
Show Gist options
  • Save Opus1no2/0d574e9d2ab319dcb62db7118576aa13 to your computer and use it in GitHub Desktop.
Save Opus1no2/0d574e9d2ab319dcb62db7118576aa13 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
.col-md-3 {
background: grey;
color: white;
border: solid 1px;
}
.to-side {
float: right;
}
</style>
</head>
<body>
<div class='cont'>
<div class='col-md-3'>
<div class='to-side'>The banner</div>
<div>Some content</div>
<ul>
<li>foo</li>
<li>foo</li>
<li>foo</li>
<li>foo</li>
</ul>
<div>Some content</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment