Skip to content

Instantly share code, notes, and snippets.

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 codeboyim/5bb4476281542f3bc678 to your computer and use it in GitHub Desktop.
Save codeboyim/5bb4476281542f3bc678 to your computer and use it in GitHub Desktop.
A Pen by Codeboy.
<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>
#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