007 front-end basis of BootStrap

I. INTRODUCTION

Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive layout, mobile devices WEB priority projects.

Download: Bootstrap Chinese network

There are two ways of bootstrap

  1. Direct reference to the bootstrap css and js files downloaded

  2. Direct reference to the bootstrap css and js files:

<link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.bootcss.com/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script>

Second, the use

1. Global CSS styles

Setting global CSS styles;

Basic HTML elements can be set by the class style and enhanced effect; as well as advanced grid system.

BootStrap global CSS style documents address : https://v3.bootcss.com/css/

Refer to the documentation specific use

2. Components

It contains many reusable components, including more features font icons, pull-down menus, navigation, alert box pop-up box and so on.

BootStrap global CSS style documents address : https://v3.bootcss.com/components/

Specific use reference documentation

Recommend a powerful icon Website Font Awesome Chinese network

Fonts provide you scalable vector icons that can be customized size, color, shadows, and any can use CSS styles.

http://www.fontawesome.com.cn/

Guess you like

Origin www.cnblogs.com/XuChengNotes/p/11695032.html