Typography #
.dl-horizontal has been dropped. Instead, use .row on <dl> and use grid column classes (or mixins) on its <dt> and <dd> children.
has been dropped.!!!!!
.dl-horizontal has been dropped. Instead, use .row on <dl> and use grid column classes (or mixins) on its <dt> and <dd> children.
has been dropped.!!!!!
2018-06-14
bootstrap 4.1.11里面,这样水平的要求是:Inline #
Remove a list’s bullets and apply some light margin with a combination of two classes, .list-inline and .list-inline-item.
有两个class要加
Remove a list’s bullets and apply some light margin with a combination of two classes, .list-inline and .list-inline-item.
有两个class要加
2018-06-14
加上
<style>
.panel {
float: left;
width: 30%;
margin: 5px;
}
</style>
<style>
.panel {
float: left;
width: 30%;
margin: 5px;
}
</style>
2018-05-29
bootstrap网格系统把width=100%分成12等分,col-xs-6 col-md-3中的数字6和3就是占6格和3格的意思。里面的xs和md是不同屏幕显示时用到的,最小屏幕小于等于768px的用xs(就是特小号),md是middle的缩写,显示大小从小到大有xs(<=768px) sm(>=768px) md(>992px) lg(>=1200px)
2018-05-29
<head>
<meta charset="utf-8">
<title>基本用法</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<meta charset="utf-8">
<title>基本用法</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>