Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html text transformation

<p style="text-transform: none;"> All letters will be displayed as entered by the developer. Default value </p>
<p style="text-transform: capitalize;"> All words will be capitalized </p>
<p style="text-transform: uppercase;"> All letters of all words will be in uppercase </p>
<p style="text-transform: lowercase;"> All letters of all words will be displayed in lowercase </p>
Comment

CSS Text Transformation

p.uppercase {
  text-transform: uppercase;
}

p.lowercase {
  text-transform: lowercase;
}

p.capitalize {
  text-transform: capitalize;
}
Comment

PREVIOUS NEXT
Code Example
Html :: howto include the single quotes in html 
Html :: free ebooks 
Html :: change tab icon html 
Html :: add tab icon html 
Html :: change input required text html 
Html :: favicon in html 
Html :: table border color in html 
Html :: bootstrap table hover 
Html :: how to make form not reload page 
Html :: hyperlink html 
Html :: add Youtube videos to a website html 
Html :: default select option 
Html :: html select default blank 
Html :: keywords html 
Html :: @keyup.enter vue 
Html :: slider is flashing when change background image 
Html :: basecamp 3 api tag mention 
Html :: link style page with html page in django 
Html :: laravel murakkab old 
Html :: axonivy reuseable component 
Html :: export website to html 
Html :: html page list out content of folder 
Html :: pass method jsf component 
Html :: Multibyte string input conversion in PHP is active and must be disabled 
Html :: [(ngModel)] in a select 
Html :: html close window button 
Html :: redirect html 
Html :: javascript onclick back 
Html :: html structure 
Html :: markdown: text alignment and size 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =