Answers for "how to target after pseudo class in css"

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
0

target element pseudo-classes

*:target { color : red }
*:target::before { content : url(target.png) }
Posted by: Guest on April-24-2021

Code answers related to "how to target after pseudo class in css"

Browse Popular Code Answers by Language