Open In App

Bulma Size

Bulma size is used to set your website’s content font size, there are 7 different sizes class in Bulma. You can use any of them to define the size of your context.

Size classes:



Example: Below example illustrate the size class in Bulma.




<!DOCTYPE html>
<html>
  
<head>
    <title>Bulma Typography</title>
    <link rel='stylesheet'
          href=
</head>
  
<body class="has-text-centered">
    <h1 class="is-size-2 has-text-success">
        GeeksforGeeks
    </h1>
    <b>Bulma Size</b>
    <br>
    <div class="container">
        <p class="is-size-1">GeeksforGeeks</p>
  
        <p class="is-size-2">GeeksforGeeks</p>
  
        <p class="is-size-3">GeeksforGeeks</p>
  
        <p class="is-size-4">GeeksforGeeks</p>
  
        <p class="is-size-5">GeeksforGeeks</p>
  
        <p class="is-size-6">GeeksforGeeks</p>
  
        <p class="is-size-7">GeeksforGeeks</p>
  
    </div>
</body>
</html>

Output:



Size

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


Article Tags :