use of before and after in css code example

Example 1: css before after

The ::before and ::after pseudo-elements in CSS allows you to insert content onto a page without it needing to be in the HTML. While the end result is not actually in the DOM, it appears on the page as if it is, and would essentially be like this:

div::before {
  content: "before";
}
div::after {
  content: "after";
}
<div>
  before
  <!-- Rest of stuff inside the div -->
  after
</div>

The only reasons to use one over the other are:

You want the generated content to come before the element content, positionally.
The ::after content is also “after” in source-order, so it will position on top of ::before if stacked on top of each other naturally.

Example 2: css after before

/*
	"before" & "after" are pseudo-contents.
	They end up *into* the tag they are declared for.
	They are just right "before" or "after" the *content* of tag they're in.
	Declare their "content" CSS rule to make them visible.
*/
div::before			/* <div>|here|Content of tag</div> */
{
  content: "|here|";
}
div::after				/* <div>Content of tag|here|</div> */
{
  content: "|here|";
}

/*
	Double-colon should be used: it's the meant pseudo-content operator.
	IE8 doesn't support it though: it supports single-colon (meant for pseudo-selectors).
	So IE8 support needs the following:
	div:before { ... }
	div:after { ... }
*/

Tags:

Css Example