---
title: Responsiveness
layout: documentation
doc-tab: overview
doc-subtab: responsiveness
breadcrumb:
- home
- documentation
- overview
- overview-responsiveness
variables_keys:
- $gap
- $tablet
- $desktop
- $widescreen
- $fullhd
---
{% capture scss_code %}
// Disable the widescreen breakpoint
$widescreen-enabled: false
// Disable the fullhd breakpoint
$fullhd-enabled: false
{% endcapture %}
{% include elements/anchor.html name="Vertical by default" %}
Every element in Bulma is mobile-first and optimizes for vertical reading, so by default on mobile:
columns
are stacked vertically
- the
level
component will show its children stacked vertically
- the
nav
menu will be hidden
You can however enforce the horizontal layout for both columns
or level
by appending the is-mobile
modifier.
{% include elements/anchor.html name="Breakpoints" %}
{% assign variables_file_url = "/blob/master/sass/utilities/initial-variables.sass#L56,L64" | prepend: site.data.meta.github %}
{% assign mixins_file_url = "/blob/master/sass/utilities/mixins.sass#L81,L129" | prepend: site.data.meta.github %}
Bulma has 4 breakpoints which defines 5 screen sizes:
{% for breakpoint_hash in site.data.breakpoints %}
{% assign breakpoint = breakpoint_hash[1] %}
{{ breakpoint.id }}
: {% if breakpoint.id == 'mobile' %}up to {{ breakpoint.to }}px
{% else %}from {{ breakpoint.from }}px
{% endif %}
{% endfor %}
To make use of these breakpoints, Bulma provides 9 responsive mixins.
{% include components/breakpoints-table.html %}
{% assign urm_link = site.data.links.by_id['utilities-responsive-mixins'] %}
To simplify using these breakpoints, Bulma provides easy-to-use responsive mixins.
{% assign vernum = site.data.meta.version | downcase | remove: "." | plus: 0 %}
{% if vernum >= 70 %}
{% include elements/anchor.html name="Disabling breakpoints" %}
By default, the $widescreen
and $fullhd
breakpoints are enabled. You can disable them by setting the corresponding Sass boolean to false
: