css before content 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";
}
before after
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: ::before content

/* Add a heart before links */
a::before {
  content: "♥";
}

Example 3: css before is not working

.chart ul:after{
  content: "";
  border:1px solid #f30;
}

Example 4: :before css

h2:before { 
    content: "Read: ";
    color: #F00;
}

Tags:

Misc Example