Answers for "pseudo class element css"

CSS
-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
-2

how to add pseudo class in html

tag/class/id/selector::after {
  content: ""; /*what ever is written within the bracket is what should be shown*/
  /*css declaration */
}
Posted by: Guest on July-11-2021

Browse Popular Code Answers by Language