Answers for "html inline style with before property"

CSS
0

how to inline style after and before in css

p {
    margin: 2em auto;

    > a {
        color: red;
    }

    &:before {
        content: "";
    }

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

Browse Popular Code Answers by Language