Home > other >  How to use text-transform in middle of a paragraph or div?
How to use text-transform in middle of a paragraph or div?

Time:01-09

I am using text-transform in the root to capitalize in my css file. Is there a way to text-transform lower-case a part of text in the middle of a div or p?

CodePudding user response:

<!DOCTYPE html>
<html>
  <head>
    <title>Test</title>
    <meta charset="UTF-8" />
    <style>
      .lower-case {
        text-transform: lowercase;
        color: red;
      }
    </style>
  </head>

  <body>
    <div>HELLO <span >WORLD</span> TEST</div>
  </body>
</html>

CodePudding user response:

You can see the example with word "dolor".

:root {
  text-transform: capitalize;
}

.lowercase {
  text-transform: lowercase;
}
<p>Lorem ipsum <span >dolor</span> sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>

<div>Lorem ipsum <span >dolor</span> sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>

  •  Tags:  
  • Related