<dl class="dl-horizontal">
<dt>标题一:</dt>
<dd>描述内容</dd>
<dt>标题二:</dt>
<dd>描述内容</dd>
<dl>
<dt>标题一:</dt>
<dd>描述内容</dd>
<dt>标题二:</dt>
<dd>描述内容</dd>
<dl>
2017-02-16
<a>标签href触发 href="#mymodal-link" data-toggle="modal"
<button>按钮data-target触发 data-target="#mymodal-data" data-toggle="modal"
模态块上加 fade类 看淡入淡出 <div class="modal fade">
模态弹出窗上加 modal-lg/modal-sm 控制窗口大小 <div class="modal-dialog modal-lg">
<button>按钮data-target触发 data-target="#mymodal-data" data-toggle="modal"
模态块上加 fade类 看淡入淡出 <div class="modal fade">
模态弹出窗上加 modal-lg/modal-sm 控制窗口大小 <div class="modal-dialog modal-lg">
2017-02-14
p {margin: 0 0 10px;} 这一句是否可以优化成p {margin-bottom: 10px;} ?
http://codeguide.bootcss.com/中的资料:简写形式的属性声明
/* Bad example */
.element {
margin: 0 0 10px;
background: red;
…
}
/* Good example */
.element {
margin-bottom: 10px;
background-color: red;
…
}
http://codeguide.bootcss.com/中的资料:简写形式的属性声明
/* Bad example */
.element {
margin: 0 0 10px;
background: red;
…
}
/* Good example */
.element {
margin-bottom: 10px;
background-color: red;
…
}
2017-02-14