Skip to content

Instantly share code, notes, and snippets.

@momin-riyadh
Created October 6, 2017 14:10
Show Gist options
  • Select an option

  • Save momin-riyadh/c9af2c0cc5229edd78bc05b18fef3b69 to your computer and use it in GitHub Desktop.

Select an option

Save momin-riyadh/c9af2c0cc5229edd78bc05b18fef3b69 to your computer and use it in GitHub Desktop.
Page title design using sudo class after
.page-title:after {
content: ""; /* This is necessary for the pseudo element to work. */
display: block; /* This will put the pseudo element on its own line. */
margin: 0 auto; /* This will center the border. */
width: 50%; /* Change this to whatever width you want. */
padding-top: 20px; /* This creates some space between the element and the border. */
border-bottom: 1px solid black; /* This creates the border. Replace black with whatever color you want. */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment