search
HomeWeb Front-endJS TutorialWhat is Bootstrap? A brief introduction to Bootstrap

This article brings you what is Bootstrap? A brief introduction to Bootstrap has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

【Related video recommendation: Bootstrap tutorial

1. Bootstrap Overview
Bootstrap is an open source framework based on
HTML, CSS, and JavaScript developed by two technical engineers from Twitter (the world's largest Weibo). The framework code is concise and visually beautiful, and can be used to quickly and easily build web page requirements based on PC and mobile devices.
In June 2010, engineers within Twitter worked to solve the problem of collaborative unification in front-end development tasks. After going through various options, Bootstrap was finally finalized and released in August 2011. After a long period of iterative upgrading, it has developed from an initial CSS-driven project into a multifunctional web front-end open source framework with many built-in JavaScript plug-ins and icons.
The most important part of Bootstrap is its responsive layout, which can be compatible with page access on PC, PAD
and mobile phones.
Bootstrap download and demonstration:
Domestic document translation official website: http://www.bootcss.com



2. Bootstrap Features

Bootstrap is very popular due to its very useful functions and features. The main core functions and features are as follows:

(1). Cross-device and cross-browser Can be compatible with all modern browsers, including the more criticized IE7 and 8. Of course, this course no longer considers browsers below IE9. (2). Responsive layout
can not only support the display of various resolutions on the PC side, but also support the responsive switching display of mobile PAD, mobile phone and other screens.

(3). Comprehensive components provided
Bootstrap provides highly practical components, including: navigation, labels, toolbars, buttons and a series of components, which are convenient for developers to call.
(4). Built-in jQuery plug-in
Bootstrap provides many practical jquery plug-ins, which facilitate developers to implement various
regular special effects on the Web.
(5). Support HTML5, CSS3
HTML5 semantic tags and CSS3 attributes are well supported.
(6).Support LESS dynamic style
LESS uses variables, nesting, and operation mixed coding to write faster and more flexible CSS. It can be developed well with Bootstrap.


three. Bootstrap structure


First of all, if you want to understand the document structure of Boostrap, you need to download it locally from the official website. Bootstrap
The download address is as follows:

Bootstrap download address: http://v3.bootcss.com/ (Select the production environment, v3.3.4)

After decompression, the directory will have the following structure: bootstrap/├── css/

│ ├── bootstrap.css

│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ ├ ── bootstrap-theme.css
│ ├── bootstrap-theme.css.map
│ └── bootstrap-theme.min.css
├── js/
│ ├── bootstrap.js
│ └── bootstrap.min.js
└── fonts/
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.svg
├── glyphicons-halflings-regular.ttf
├── glyphicons-halflings-regular.woff
└── glyphicons-halflings-regular.woff2
It is mainly divided into three core directories: css (style), js (script), fonts (font).
1.css There are four files with the css suffix in the directory. The files containing the word min are compressed versions. Generally,
is used; the files that are not included are uncompressed and you can learn to understand the css code files; and Files with the map suffix are
css source code mapping tables, used in some specific browser tools.
2.js directory contains two files, which are uncompressed and compressed js files.
3.fonts directory contains font files with different suffixes.

Create the first bootstrap page

<!--描述:Bootstrap之初体验-->
nbsp;html>
    
        <meta>
        <title>bootstrap初体验</title>
    <link>
    
    
        <button>bootstrap初体验之按钮</button>
    


Bootstrap sets the global font-size to 14px and line-height to 1.428 (i.e. 20px);

paragraph The element is set equal to 1/2 the line height (i.e. 10px); the color is set to #333.

The above is the detailed content of What is Bootstrap? A brief introduction to Bootstrap. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Is JavaScript Written in C? Examining the EvidenceIs JavaScript Written in C? Examining the EvidenceApr 25, 2025 am 12:15 AM

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.

JavaScript's Role: Making the Web Interactive and DynamicJavaScript's Role: Making the Web Interactive and DynamicApr 24, 2025 am 12:12 AM

JavaScript is at the heart of modern websites because it enhances the interactivity and dynamicity of web pages. 1) It allows to change content without refreshing the page, 2) manipulate web pages through DOMAPI, 3) support complex interactive effects such as animation and drag-and-drop, 4) optimize performance and best practices to improve user experience.

C   and JavaScript: The Connection ExplainedC and JavaScript: The Connection ExplainedApr 23, 2025 am 12:07 AM

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

From Websites to Apps: The Diverse Applications of JavaScriptFrom Websites to Apps: The Diverse Applications of JavaScriptApr 22, 2025 am 12:02 AM

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python vs. JavaScript: Use Cases and Applications ComparedPython vs. JavaScript: Use Cases and Applications ComparedApr 21, 2025 am 12:01 AM

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

The Role of C/C   in JavaScript Interpreters and CompilersThe Role of C/C in JavaScript Interpreters and CompilersApr 20, 2025 am 12:01 AM

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

JavaScript and the Web: Core Functionality and Use CasesJavaScript and the Web: Core Functionality and Use CasesApr 18, 2025 am 12:19 AM

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools