Hello,
i came accross this concept, and having a tough time grasping it
i googled, found some results (with examples) but only partialy get it
kindly point out the most basic concept of
and how the property and value happen
how about this...
also, explain
why is the content empty?
i think these 2 concepts work together...
i know this is only the CSS
i ask for 2 - 3 examples, please (plus the code above)
this is fresh to me, so please go slow and simple
MOST APPRECIATED!!!
i came accross this concept, and having a tough time grasping it
i googled, found some results (with examples) but only partialy get it
kindly point out the most basic concept of
Code:
::after
and how the property and value happen
how about this...
Code:
.btn-white::after {
background-color: #fff;
}
.btn:hover::after {
transform: scaleX(1.4) scaleY(1.6);
}
also, explain
Code:
.btn::after {
content: "";
}
why is the content empty?
i think these 2 concepts work together...
i know this is only the CSS
i ask for 2 - 3 examples, please (plus the code above)
this is fresh to me, so please go slow and simple
MOST APPRECIATED!!!