About & Social

0
CSS text-indent property

8.Text-indent Property:

      Who we CSS text-indent HTML <pre> tag can be used instead. Value directly or by using a percentage of the value we can specify text-indent. What is the meaning of the text with text indent on the left side to start with. As the value of the length (em, ex, pt) and percentage (%) can be used.

For Example:

     Input:        <html>
                    <head>
                         <style type=”text/css”>
                              h1 {text-indent:50px;}
                         </style>
                    </head>
                         <body>
                              <h2>This site name is Gulpa Tutorial</h2>
                              <h1>This site name is Gulpa Tutorial</h1>
                          </body>
               </html>

     Output:


This site name is Gulpa Tutorial

This site name is Gulpa Tutorial





9. Text produce Property:
     
      Transform the text of the text can be quickly capitalize. The first letter of every word to capitalize. The values can be four. 


For example,

           Input:         <html>
                    <head>
                       <style type=”text/css”>
                          p.uppercase{text-transform:uppercase;}
                          p.lowercase{text-transform:lowercase;}
                          p.capitalize{text-transform:capitalize;}
                        </style>
                    </head>
                        <body>
                          <p class=”uppercase”>This is some text.</p>
                          <p class=”lowercase”>This is some text.</p>
                          <p class=”capitalize”>This is some text.</p>
                         </body>
                 </html>

         Output:


This is some text.
This is some text.
This is some text.

Post a Comment

Dear readers, after reading the Content please ask for advice and to provide constructive feedback Please Write Relevant Comment with Polite Language.Your comments inspired me to continue blogging. Your opinion much more valuable to me. Thank you.