add image 3a 3abefore css

Solutions on MaxInterview for add image 3a 3abefore css by the best coders in the world

showing results for - "add image 3a 3abefore css"
Sofie
27 Aug 2019
1element::after{
2  content:url('blackCarrot.png'); 
3  position:relative; /*or absolute*/
4  z-index:100000; 
5  left:-50px;
6  top:10px;
7}
8