<style>
/*Pseudo Element Example*/
element-selector::pseudo-element {
property: value;
}
</style>
<head>
<style>
div::first-letter {
color: red;
font-size: 50px;
}
</style>
</head>
<body>
<div>TDB-School</div>
</body>
<style>
/*Pseudo Element Example*/
div::first-line {
color: red;
font-size: 50px;
}
</style>
<head>
<style>
div::first-line {
color: red;
font-size: 50px;
}
</style>
</head>
<body>
<div>TDB-School<br> TDB-Tutorial</div>
</body>
<style>
div::first-letter {
color: red;}
div::first-line {
color: red;}
</style>
<style>
/*Pseudo Element Example*/
div::before {
content:"your text";
}
</style>
<head>
<style>
div::before {
content:"your text"
}
div::first-letter {
color: red;}
</style>
</head>
<body>
<div>TDB-School<br> TDB-Tutorial</div>
</body>
Share TDB SCHOOL
Share this E-Learning Website on social media platforms with your friends and followers