Answers for "xss ::after"

CSS
0

scss ::after

p {
    margin: 2em auto;

    > a {
        color: red;
    }

    &:before {
        content: "";
    }

    &:after {
        content: "* * *";
    }
}
Posted by: Guest on March-04-2020
0

::after

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

Browse Popular Code Answers by Language