2016-09-11 11:00:49 +00:00
---
2017-07-29 12:02:00 +00:00
title: Responsiveness
2016-09-11 11:00:49 +00:00
layout: documentation
doc-tab: overview
doc-subtab: responsiveness
---
{% include subnav-overview.html %}
< section class = "section" >
< div class = "container" >
< h1 class = "title" > Responsiveness< / h1 >
< h2 class = "subtitle" > Bulma is a < strong > mobile-first< / strong > framework< / h2 >
< hr >
2017-03-14 21:19:06 +00:00
< h3 class = "title" > Vertical by default< / h3 >
< div class = "content" >
< p >
2017-05-01 09:48:52 +00:00
Every element in Bulma is < strong > mobile-first< / strong > and optimizes for < strong > vertical reading< / strong > , so by default on mobile:
2017-03-14 21:19:06 +00:00
< / p >
< ul >
< li > < code > columns< / code > are stacked vertically< / li >
< li > the < code > level< / code > component will show its children stacked vertically< / li >
< li > the < code > nav< / code > menu will be hidden< / li >
< / ul >
< p > For example, you can enforce the < strong > horizontal< / strong > layout for both < code > columns< / code > or < code > nav< / code > by appending the < code > is-mobile< / code > modifer.< / p >
< / div >
< hr >
2016-09-11 11:00:49 +00:00
< h3 class = "title" > Breakpoints< / h3 >
< div class = "content" >
2017-03-14 21:19:06 +00:00
< p > Bulma has 5 breakpoints:< / p >
2016-09-11 11:00:49 +00:00
< ul >
< li > < code > mobile< / code > : up to < code > 768px< / code > < / li >
< li > < code > tablet< / code > : from < code > 769px< / code > < / li >
2017-01-04 13:05:24 +00:00
< li > < code > desktop< / code > : from < code > 1000px< / code > < / li >
< li > < code > widescreen< / code > : from < code > 1192px< / code > < / li >
2017-03-14 22:38:45 +00:00
< li > < span class = "tag is-success" > New!< / span > < code > fullhd< / code > : from < code > 1384px< / code > < / li >
2016-09-11 11:00:49 +00:00
< / ul >
2017-03-14 21:19:06 +00:00
< p > Bulma uses 9 responsive mixins:< / p >
2016-09-11 11:00:49 +00:00
< ul >
< li >
< code > =mobile< / code > < br >
until < code > 768px< / code >
< / li >
< li >
< code > =tablet< / code > < br >
from < code > 769px< / code >
< / li >
< li >
< code > =tablet-only< / code > < br >
2017-01-04 13:05:24 +00:00
from < code > 769px< / code > and until < code > 999px< / code >
2016-09-11 11:00:49 +00:00
< / li >
< li >
< code > =touch< / code > < br >
2017-01-04 13:05:24 +00:00
until < code > 999px< / code >
2016-09-11 11:00:49 +00:00
< / li >
< li >
< code > =desktop< / code > < br >
2017-01-04 13:05:24 +00:00
from < code > 1000px< / code >
2016-09-11 11:00:49 +00:00
< / li >
< li >
< code > =desktop-only< / code > < br >
2017-01-04 13:05:24 +00:00
from < code > 1000px< / code > and until < code > 1191px< / code >
2016-09-11 11:00:49 +00:00
< / li >
< li >
< code > =widescreen< / code > < br >
2017-01-04 13:05:24 +00:00
from < code > 1192px< / code >
2016-09-11 11:00:49 +00:00
< / li >
2017-03-14 21:19:06 +00:00
< li >
< code > =widescreen-only< / code > < br >
from < code > 1192px< / code > and until < code > 1383px< / code >
< / li >
< li >
2017-03-14 22:38:45 +00:00
< span class = "tag is-success" > New!< / span >
2017-03-14 21:19:06 +00:00
< code > =fullhd< / code > < br >
from < code > 1384px< / code >
< / li >
2016-09-11 11:00:49 +00:00
< / ul >
< / div >
2017-03-14 21:19:06 +00:00
< table class = "table is-bordered" >
2016-09-11 11:00:49 +00:00
< thead >
< tr >
2017-03-14 21:19:06 +00:00
< th style = "width: 20%;" >
2016-09-11 11:00:49 +00:00
Mobile< br >
Up to < code > 768px< / code >
< / th >
2017-03-14 21:19:06 +00:00
< th style = "width: 20%;" >
2016-09-11 11:00:49 +00:00
Tablet< br >
2017-01-04 13:05:24 +00:00
Between < code > 769px< / code > and < code > 999px< / code >
2016-09-11 11:00:49 +00:00
< / th >
2017-03-14 21:19:06 +00:00
< th style = "width: 20%;" >
2016-09-11 11:00:49 +00:00
Desktop< br >
2017-01-04 13:05:24 +00:00
Between < code > 1000px< / code > and < code > 1191px< / code >
2016-09-11 11:00:49 +00:00
< / th >
2017-03-14 21:19:06 +00:00
< th style = "width: 20%;" >
2016-09-11 11:00:49 +00:00
Widescreen< br >
2017-03-14 21:19:06 +00:00
Between < code > 1192px< / code > and < code > 1383px< / code >
< / th >
< th style = "width: 20%;" >
FullHD< br >
< code > 1384px< / code > and above
2016-09-11 11:00:49 +00:00
< / th >
< / tr >
< / thead >
< tbody >
< tr >
2017-03-14 21:19:06 +00:00
< td >
2016-09-11 11:00:49 +00:00
< p class = "notification is-success" > mobile< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td colspan = "4" >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
< / tr >
< tr >
2017-03-14 21:19:06 +00:00
< td >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td colspan = "4" >
2016-09-11 11:00:49 +00:00
< p class = "notification is-success" > tablet< / p >
< / td >
< / tr >
< tr >
2017-03-14 21:19:06 +00:00
< td colspan = "2" >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td colspan = "3" >
2016-09-11 11:00:49 +00:00
< p class = "notification is-success" > desktop< / p >
< / td >
< / tr >
< tr >
2017-03-14 21:19:06 +00:00
< td colspan = "3" >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td colspan = "2" >
2016-09-11 11:00:49 +00:00
< p class = "notification is-success" > widescreen< / p >
< / td >
< / tr >
< tr >
2017-03-14 21:19:06 +00:00
< td colspan = "4" >
< p class = "notification" > -< / p >
< / td >
< td >
< p class = "notification is-success" > fullhd< / p >
< / td >
< / tr >
< tr >
< td >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td >
2016-09-11 11:00:49 +00:00
< p class = "notification is-success" > tablet-only< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td colspan = "3" >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
< / tr >
< tr >
2017-03-14 21:19:06 +00:00
< td colspan = "2" >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td >
2016-09-11 11:00:49 +00:00
< p class = "notification is-success" > desktop-only< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td colspan = "2" >
< p class = "notification" > -< / p >
< / td >
< / tr >
< tr >
< td colspan = "3" >
< p class = "notification" > -< / p >
< / td >
< td >
< p class = "notification is-success" > widescreen-only< / p >
< / td >
< td >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
< / tr >
< tr >
2017-03-14 21:19:06 +00:00
< td colspan = "2" >
2016-09-11 11:00:49 +00:00
< p class = "notification is-success" > touch< / p >
< / td >
2017-03-14 21:19:06 +00:00
< td colspan = "3" >
2016-09-11 11:00:49 +00:00
< p class = "notification" > -< / p >
< / td >
< / tr >
< / tbody >
< / table >
< / div >
< / section >