Examples of Bootstrap responsive utility and bootstrap Utility
Bootstrap provides some helper classes for faster development of mobile devices. You can use media queries to display and hide large, small, and medium-sized devices.
Use these tools with caution to avoid creating different versions on the same site. Currently, the responsive utility is only applicable to block and table switching.
Instance
The following example demonstrates the usage of the helper class listed above. Adjust the browser window size, or load instances on different devices to test the responsive Utility Class.
<Div class = "container" style = "padding: 40px; "> <div class =" row visible-on "> <div class =" col-xs-6 col-sm-3 "style =" background-color: # dedef8; box-shadow: inset 1px-1px 1px #444, inset-1px 1px 1px #444; "> <span class =" hidden-xs "> very small </span> <span class =" visible-xs ">✔Visible on a particularly small device </span> </div> <div class = "col-xs-6 col-sm-3" style = "background-color: # dedef8; box-shadow: inset 1px-1px 1px #444, inset-1px 1px 1px #444; "> <span class =" hidden-sm "> small </span> <span class =" visible-sm ">✔Visible on small devices </span> </div> <div class = "clearfix visible-xs"> </div> <div class = "col-xs-6 col-sm-3" style = "background -color: # dedef8; box-shadow: inset 1px-1px 1px #444, inset-1px 1px 1px #444; "> <span class =" hidden-md "> medium </span> <span class =" visible-md ">✔Visible on medium-sized devices </span> </div> <div class = "col-xs-6 col-sm-3" style = "background-color: # dedef8; box-shadow: inset 1px-1px 1px #444, inset-1px 1px 1px #444; "> <span class =" hidden-lg "> large </span> <span class =" visible-lg ">✔Visible on large devices </span> </div>
The above is a detailed description of the Bootstrap responsive utility instance introduced by xiaobian. I hope it will help you. If you have any questions, please leave a message and I will reply to you in a timely manner. Thank you very much for your support for the help House website!