已采纳回答 / 雨沐风
在bootstrap下面加载一个自己定义的css,这样浏览器加载时候会覆盖,上面的bootstrap。把对应的bootstrap css标签样式自定义覆盖即可!
2014-12-29
已采纳回答 / purple_yao
可以在bootstrap.js文件900行后面添加如下代码,便可以实现垂直居中。that.$element.children().eq(0).css("position", "absolute").css({ "margin":"0px", "top": function () { return (that.$element.height() - that.$element.children().eq(0).height()-40) / 2 +...
2014-10-31