Skip to content

Instantly share code, notes, and snippets.

@gunnarbittersmann
Created November 5, 2013 18:39
Show Gist options
  • Select an option

  • Save gunnarbittersmann/7323857 to your computer and use it in GitHub Desktop.

Select an option

Save gunnarbittersmann/7323857 to your computer and use it in GitHub Desktop.
heading decorated
/**
* heading decorated
*/
h1
{
font-size: 1.25em; /* use relative unit */
text-align: center;
position: relative;
}
h1::first-line
{
background: white;
}
h1::after
{
content: "";
display: inline-block;
}
h1::after,
h1::first-letter
{
padding-left: 1em;
}
h1::before
{
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 50%;
left: 0;
border-bottom: 1px dotted;
z-index: -1
}
<h1>Heading</h1>
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment