Created
July 12, 2014 07:22
-
-
Save codeboyim/5bb4476281542f3bc678 to your computer and use it in GitHub Desktop.
A Pen by Codeboy.
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
<div id="header"> | |
<h1>some title</h1> | |
<div id="header-content"><span>first line of header text<br> | |
second line of header text<br> | |
third, last line of header text</span></div> | |
</div> |
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
#header-content::before{ | |
display:inline-block; | |
content:''; | |
height:100%; | |
vertical-align:bottom; | |
width:2px; | |
background-color:blue; | |
} | |
#header-content{ | |
height:100px; | |
border:solid 1px grey; | |
} | |
#header-content span{ | |
display:inline-block; | |
border:solid 1px red; | |
} | |
h1{ | |
margin:5px 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment