VOOZH about

URL: https://www.geeksforgeeks.org/css/bulma-fixed-square-images/

⇱ Bulma Fixed square images - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Bulma Fixed square images

Last Updated : 23 Jul, 2025

Bulma is a free and open-source CSS framework that has prebuilt components like buttons, icons, etc. to make web development faster. 

In this article, we will see how to use fixed square images in Bulma. Fixed Square Images In Bulma are fixed dimensions image containers that can be useful in specific places like avatars. These classes are used on the figure element, along with the image modifier, which wraps the image element.

Bulma Fixed Square Images Classes:

  • is-16x16: This class is use to make image 16px*16px.
  • is-24x24: This class is use to make image 24px*24px.
  • is-32x32: This class is use to make image 32px*32px.
  • is-48x48: This class is use to make image 48px*48px.
  • is-64x64: This class is use to make image 64px*64px.
  • is-96x96: This class is use to make image 96px*96px.
  • is-128x128: This class is use to make image 128px*128px.

Syntax:

<figure class="image is-64x64">
 <!-- THis image will be 64px * 64px in size -->
 <img src="./link-to-image">
</figure>

Below example illustrate the Bulma Fixed square images:

Example: The below example illustrates the use of the fixed square image classes in Bulma.

Output:

👁 Bulma Fixed square images

Reference: https://bulma.io/documentation/elements/image/#fixed-square-images

Comment
Article Tags: