:पहली पंक्ति . का उपयोग करें तत्व दस्तावेज़ में तत्वों की पहली पंक्ति में विशेष प्रभाव जोड़ने के लिए।
उदाहरण
पाठ की पहली पंक्ति में विशेष शैलियों को जोड़ने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं
<html>
<head>
<style>
p:first-line {
text-decoration: underline;
}
p.noline:first-line {
text-decoration: none;
}
</style>
</head>
<body>
<p class = "noline"> This line would not have any underline because this belongs to nline class.</p>
<p>The first line of this paragraph will be underlined as defined in the CSS rule above. Rest of the
lines in this paragraph will remain normal. This example shows how to use :first-line pseduo element
to give effect to the first line of any HTML element.</p>
</body>
</html>