0%

CSS备忘录

固定在div的右下角

1
2
3
position:absolute;
right:5px;
bottom:5px;

下外边框距离(和底部的div拉开距离)

1
margin-bottom: 10px

靠边

1
2
3
4
5
6
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}

字体加粗

1
2
<b></b>
<strong></strong>