Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

सीएसएस में ::पहली पंक्ति छद्म-तत्व

<घंटा/>

यह सीएसएस छद्म तत्व किसी तत्व की सामग्री की पहली पंक्ति का चयन करता है। हालाँकि, लाइन की लंबाई विंडो के आकार के अनुसार बदल सकती है यदि टेक्स्ट वाले टेक्स्ट की चौड़ाई निश्चित नहीं है।

आइए CSS का एक उदाहरण देखें ::प्रथम-पंक्ति छद्म तत्व -

उदाहरण

<!DOCTYPE html>
<html>
<head>
<style>
p::first-line {
   background-color: lightgreen;
   color: white;
}
</style>
</head>
<body>
<h2>Lorem Ipsum</h2>
<p>Phasellus id ante turpis.Vestibulum luctus justo id odio iaculis condimentum. Vestibulum sapien mauris, feugiat id posuere vitae, condimentum blandit sapien.</p>
<div id="divDisplay"></div>
<script>
divDisplay.textContent = 'Current window width: '+window.innerWidth+'px';
window.addEventListener('resize', function() {
   divDisplay.textContent = 'Current window width: '+window.innerWidth+'px';
})
</script>
</body>
</html>

आउटपुट

प्रारंभ में जब विंडो की चौड़ाई का आकार '606px' हो -

सीएसएस में ::पहली पंक्ति छद्म-तत्व

जब विंडो की चौड़ाई बढ़ाई जाती है -

सीएसएस में ::पहली पंक्ति छद्म-तत्व

जब तत्व वाले टेक्स्ट की चौड़ाई तय की गई और विंडो का आकार बदला गया -

सीएसएस में ::पहली पंक्ति छद्म-तत्व

आइए CSS का एक और उदाहरण देखें ::प्रथम-पंक्ति छद्म तत्व -

उदाहरण

<!DOCTYPE html>
<html>
<head>
<style>
p::first-line {
   background-color: #FF8A00;
   color: white;
}
div{
   width: 420px;
}
</style>
</head>
<body>
<div>
<h2>Demo Heading</h2>
<p>This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </p>
<p>This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </p>
</div>
</body>
</html>

आउटपुट

सीएसएस में ::पहली पंक्ति छद्म-तत्व


  1. सीएसएस का उपयोग करके टेक्स्ट इंडेंटेशन

    टेक्स्ट इंडेंटेशन के लिए, CSS में टेक्स्ट-इंडेंट प्रॉपर्टी का उपयोग करें। यह एक पैराग्राफ में पहली पंक्ति के इंडेंटेशन के लिए है। उदाहरण आइए अब एक उदाहरण देखें - <!DOCTYPE html> <html> <head> <style> div {    text-indent: 30px; } </style> </head> <bo

  1. CSS में @media At-नियम

    CSS @media नियम का उपयोग एक ही स्टाइल शीट में विभिन्न मीडिया प्रकारों (जैसे प्रिंट, स्क्रीन, सभी, आदि) के लिए विभिन्न शैलियों को निर्दिष्ट करने के लिए किया जाता है। इसके बाद आमतौर पर मीडिया प्रकारों की अल्पविराम से अलग की गई सूची और लक्ष्य मीडिया के लिए शैलियों के नियमों वाले CSS घोषणा ब्लॉक होते है

  1. सीएसएस में ::पहला-अक्षर छद्म-तत्व

    यह सीएसएस छद्म तत्व किसी तत्व की सामग्री के पहले अक्षर का चयन करता है। हालांकि, यदि तत्व इनलाइन-स्तर है तो यह काम नहीं करता है। उदाहरण आइए CSS के लिए एक उदाहरण देखें ::प्रथम-अक्षर छद्म तत्व - <!DOCTYPE html> <html> <head> <style> div{    background-color: #32485d;