Bootstrap, from Twitter, is currently the most popular front-end framework.
Bootstrap is based on HTML, CSS, and JAVASCRIPT. It is simple and flexible, making web development faster.
Bootstrap contains a wealth of Web components. Based on these components, you can quickly build a beautiful and fully functional website.
What are components? What are the bootstrap components?
Component: Generally refers to a part of a software system that assumes specific responsibilities and can be developed and tested independently of the entire system. A well-designed component should be able to be used in different software systems. (reusable).
For example, we can write a responsive navigation bar component for the official website. When the official website expands the page, it can be directly pulled over and reused.
Currently commonly used bootstrap components:
1. Carousel image
2. Drop-down menu
3. Responsive navigation bar
Why use bootstrap’s drop-down menu
Because it’s convenient! The HTML select drop-down menu is not beautiful, and it is troublesome to customize the style. The bootstrap drop-down menu is implemented using div ul li, which can fully customize the style, and is also very convenient when using multi-level drop-down menus.
Related recommendations: "bootstrap tutorial"
The above is the detailed content of What are the bootstrap components?. For more information, please follow other related articles on the PHP Chinese website!