- JavaScript by Example
- Dani Akash S
- 192字
- 2021-07-02 18:39:09
Responsive designing with flexbox
If you look into the index.html file of our previous chapter, you will see that there are classes, such as col-md-2, col-xs-2, col-lg-2, col-sm-2, and so on. They are Bootstrap's grid classes. The previous chapter's layout was designed using the Bootstrap grid system. The system divides the page into rows and 12 columns and allocates a specific number of columns to each div in a row depending on the screen size.
There are four different screen sizes:
- Desktop (md)
- Tablets (sm)
- Phones (xs)
- Large desktops (lg)
However, we are not going to use Bootstrap grids in this chapter. We are going to be using a new layout mode introduced in CSS3 called the flexbox. Flexbox or flexible box, as it sounds, provides a box model for creating layouts.
Flexbox is a new layout system, which is actively being implemented by the browser vendors. Support is almost complete; it's time to adopt this standard in projects. A few problems still exist, such as IE 11 only having partial flexbox support and older versions of IE do not support flexbox. Visit https://caniuse.com/ to check details on browser support for flexbox.
推薦閱讀
- Getting Started with React
- 工程軟件開發技術基礎
- CentOS 7 Server Deployment Cookbook
- Python深度學習
- BeagleBone Media Center
- Python程序設計
- AIRIOT物聯網平臺開發框架應用與實戰
- Microsoft Dynamics AX 2012 R3 Financial Management
- Kivy Cookbook
- 創意UI:Photoshop玩轉APP設計
- Learning Kotlin by building Android Applications
- OpenCV 3.0 Computer Vision with Java
- 面向對象程序設計及C++(第3版)
- Python應用開發技術
- Java Web開發教程:基于Struts2+Hibernate+Spring