Answers for ":after and :before examples css"

CSS
0

how use befor after for image

/* for child  */

.custom_img:after {
    content: "";
    background-color: #2359cf;
    height: 400px;
    width: 70%;
    top: -15px;
    right: -6px;
    position: absolute;
    z-index: 999;
}
Posted by: Guest on November-02-2020
2

:before css

h2:before { 
    content: "Read: ";
<span class="Apple-converted-space">    color: #F00;</span>
}
Posted by: Guest on January-04-2021

Code answers related to ":after and :before examples css"

Browse Popular Code Answers by Language