我正在使用这个bootstrap one page wonder模板并开发sinatra网站。
http://ironsummitmedia.github.io/startbootstrap-one-page-wonder/
我想在每次访问此网站时更改img。
所以我在CSS文件中注释掉了.header-image。
/*background: url('http://placehold.it/1900x500') no-repeat center center scroll;*/
我在html文件中写道。 在标题标记内,
<meta http-equiv="Content-Style-Type" content="text/css">
并添加此内容。
<header class="header-image" style="background: url('http://placehold.it/1900x500') no-repeat center center scroll;">
但它不会奏效。如何在内联标题标记中指定背景img?
答案 0 :(得分:0)
给身体溢出自动这是因为IE默认身体高度为100%它内部的广告边距扩展了它的高度所以改变它的默认行为你可以使用溢出自动!
body {
margin: 0;
background-color: black;
font-size: 2em;
color: white;
overflow:auto;
}