Created
November 28, 2018 15:31
-
-
Save Opus1no2/0d574e9d2ab319dcb62db7118576aa13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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