1.

How to use before and after in CSS3?

Answer»

<P>The ::before the selector is used to INSERTING something before the CONTENT of any selected element. WHEREAS, the ::after selector to insert something after the content in a specified element.

Syntax for before selector:

::before {
   css declarations;
}

Syntax for After Selector:

::after {
   css declarations;
}

Example before

p::before {
   content: "Read this -";
   color: red;
   background-color: red;
}

after

p::after {
   content: " - Read this";
   color: red;
   background-color: red;
}



Discussion

No Comment Found