Open In App

Bulma Text transformation

Bulma text transformation is used to set the transformation of text like if you want the text italic, underlined or capitalized, etc. then you can use these classes to define that.

Text transformation classes:



Example: The below example illustrate the text transformation class in Bulma.




<!DOCTYPE html>
<html>
  
<head>
    <title>Bulma Panel</title>
    <link rel='stylesheet'
          href=
</head>
  
<body class="has-text-centered">
    <h1 class="is-size-2 has-text-success">
        GeeksforGeeks
    </h1>
    <b>Bulma Text transformation</b>
    <br>
    <div class="container">
        <p class="is-capitalized is-size-4">geeksforGeeks</p>
  
        <p class="is-lowercase is-size-4">GeeksforGeeks</p>
  
        <p class="is-uppercase is-size-4">GeeksforGeeks</p>
  
        <p class="is-italic is-size-4">GeeksforGeeks</p>
  
        <p class="is-underlined is-size-4">GeeksforGeeks</p>
    </div>
</body>
  
</html>

Output:



Text transformation

Reference: https://bulma.io/documentation/helpers/typography-helpers/#text-transformation


Article Tags :