Answers for "before and after pseudo selectors in css ham"

CSS
0

how to use after pseudo class in css

a::after {
  content: "whatever content you want to display";
  /*css declaration*/
}
Posted by: Guest on July-17-2021
-1

how to use before pseudo class in css

a::before {
  content: "whatever content you want to display";
  /*css declaration*/
}
Posted by: Guest on July-17-2021

Code answers related to "before and after pseudo selectors in css ham"

Browse Popular Code Answers by Language