CSS COURSE • LESSON
⚡ CSS Pseudo Elements
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Pseudo Elements
Pseudo elements style specific parts of elements.
p::first-letter {
font-size:40px;
}
p::before {
content:"Hello ";
}