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

CSS के साथ सेलेक्टर में टेक्स्ट के पहले अक्षर में विशेष शैली जोड़ने के लिए किस तत्व का उपयोग किया जाता है


दस्तावेज़ में तत्वों के पहले अक्षर में विशेष प्रभाव जोड़ने के लिए :first-letter तत्व का उपयोग करें। पाठ के पहले अक्षर में विशेष शैली जोड़ने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -

उदाहरण

<html>
   <head>
      <style>
         p:first-letter {
            font-size: 5em;
         }
         p.normal:first-letter {
            font-size: 10px;
         }
      </style>
   </head>
   <body>
      <p class="normal"> First character of this paragraph will be normal and will have font size 10 px;</p>
      <p>The first character of this paragraph will be 5em big as defined in the CSS rule above. Rest of the characters in this paragraph will remain normal. This example shows how to use :first-letter pseduo element to give effect to the first characters of any HTML element.</p>
   </body>
</html>

  1. सेट करें कि सीएसएस के साथ तत्व का पाठ चुना जा सकता है या नहीं

    सीएसएस के साथ तत्व का टेक्स्ट चुना जा सकता है या नहीं, यह निर्धारित करने के लिए सीएसएस उपयोगकर्ता-चयन संपत्ति का उपयोग करें: उदाहरण <!DOCTYPE html> <html>    <head>       <style>          div {         &nbs

  1. सीएसएस के साथ टेक्स्ट बटन कैसे स्टाइल करें?

    CSS के साथ टेक्स्ट बटन को स्टाइल करने के लिए कोड निम्नलिखित है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> button {    border: none;    color: white;  

  1. सीएसएस के साथ एक घंटा तत्व कैसे शैलीबद्ध करें?

    CSS के साथ hr एलिमेंट को स्टाइल करने के लिए, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <meta name="viewport" content="width=device-width, initial-scale=1"> <head> <style>    body{       font-family: 'Segoe UI',