前端静态资源
国内有哪些靠谱的 Javascript 库 CDN 可用? – 知乎
我们需要使用开源可靠的 CDN 服务,因为有时我们无法在自建主机上部署并使用第三方库这里将整理可靠的、受大家推荐的 CDN 服务。
BootCDN – Bootstrap 中文网开源项目免费 CDN 加速服务
ul and li
Horizontal list items | https://stackoverflow.com/questions/15710701/horizontal-list-items
ul > li {
display: inline-block;
/* You can also add some margins here to make it look prettier */
}
/* 移除前缀空白部分 */
/* https://stackoverflow.com/questions/9620594/removing-list-indentation-with-css */
ul {
list-style-position: inside;
padding-left: 0;
}
div
使其垂直居中
#abc{
display: table;
}
#abc span {
vertical-align:middle;
display: table-cell;
}