Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created by Mark Otto and Jacob Thornton, and maintained by the core team with the massive support and involvement of the community.
To get started, check out https://getbootstrap.com/!
This repository is a fork of original Bootstrap but keep only version 3. This is to make it use new functions and syntax and work with modern web browsers.
There is no new or extra features than original Bootstrap 3 and no new feature request here.
- Limitations
- Quick start
- Bugs and feature requests
- Documentation
- Contributing
- Community
- Versioning
- Creators
- Copyright and license
This repo. use CSS variable for example --background-color: #fff;
and background-color: var(--background-color);
. So, it does not supported Internet Explorer (IE). If you would like to use old browsers, please use original Bootstrap 3.
This repo. use CSS relative color syntax and it currently does not supported in all web browsers yet. Please check for current support on a link.
Several quick start options are available:
- Download the latest release.
- Clone the repo:
git clone https://github.com/rundiz/bootstrap3.git
.
Read the Getting started page for information on the framework contents, templates and examples, and more.
Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
bootstrap/
├── css/
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ ├── bootstrap.min.css.map
│ ├── bootstrap-theme.css
│ ├── bootstrap-theme.css.map
│ ├── bootstrap-theme.min.css
│ └── bootstrap-theme.min.css.map
├── 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
We provide compiled CSS and JS (bootstrap.*
), as well as compiled and minified CSS and JS (bootstrap.min.*
). CSS source maps (bootstrap.*.map
) are available for use with certain browsers' developer tools. Fonts from Glyphicons are included, as is the optional Bootstrap theme.
Have a bug or a feature request? Please first read the issue guidelines and search for existing and closed issues. If your problem or idea is not addressed yet, please open a new issue.
Do not accept feature requests. This repository is for make Bootstrap 3 using modern functions, syntax to use with moder web browsers but keep original features of Bootstrap 3. No new feature requests.
Bootstrap's documentation, included in this repo in the root directory, is built with Jekyll and publicly hosted on GitHub Pages at https://getbootstrap.com/. The docs may also be run locally.
- If necessary, install Jekyll and other Ruby dependencies with
bundle install
. Note for Windows users: Read this guide to get Jekyll up and running without problems. - From the root
/bootstrap
directory, runbundle exec jekyll serve
in the command line. - Open
http://localhost:9001
in your browser, and voilà.
- Install Docker and then install Docker image named jekyll via command
docker pull jekyll/jekyll:3.8.6
. - From the root
/bootstrap
directory, run Docker image via commanddocker run --rm -it --volume="%cd%:/srv/jekyll" --publish 9001:9001 jekyll/jekyll:3.8.6 jekyll serve
. You may replace%cd%
to$PWD
on Linux.
Or you may use commanddocker run --rm -it --volume="%cd%:/srv/jekyll" --publish 9001:9001 --publish 35729:35729 jekyll/jekyll:3.8.6 jekyll serve --watch --force_polling --livereload
to make it auto regenerate the document and live reload on Windows. - Open
http://localhost:9001/docs/3.4/
in your browser.
Learn more about using Jekyll by reading its documentation.
Please read through our contributing guidelines. Included are directions for opening issues, coding standards, and notes on development.
Moreover, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the Code Guide, maintained by Mark Otto.
Bootstrap v3 is now closed off to new features.
Editor preferences are available in the editor config for easy use in common text editors. Read more and download plugins at https://editorconfig.org/.
Get updates on Bootstrap's development and chat with the project maintainers and community members.
- Follow @getbootstrap on Twitter.
- Read and subscribe to The Official Bootstrap Blog.
- Join the official Slack room.
- Chat with fellow Bootstrappers in IRC. On the
irc.freenode.net
server, in the##bootstrap
channel. - Implementation help may be found at Stack Overflow (tagged
twitter-bootstrap-3
). - Developers should use the keyword
bootstrap
on packages which modify or add to the functionality of Bootstrap when distributing through npm or similar delivery mechanisms for maximum discoverability.
For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under the Semantic Versioning guidelines. Sometimes we screw up, but we'll adhere to those rules whenever possible.
See the Releases section of our GitHub project for changelogs for each release version of Bootstrap. Release announcement posts on the official Bootstrap blog contain summaries of the most noteworthy changes made in each release.
Mark Otto
Jacob Thornton
Code and documentation copyright 2011-2019 Twitter, Inc. Code released under the MIT license. Docs released under Creative Commons.