我不想使用 html 标签。这是我的CSS。我正在使用引导程序 3.0。
background:url('images/ip-box.png')no-repeat;
background-size:100%;
height: 140px;
display:block;
padding:0 !important;
margin:0;
在 100% 缩放时,这是可以的。但是当我放大到大约 180% 时,图像会从顶部和底部变短,我想要一些 css 技巧。
我不想使用 html 标签。这是我的CSS。我正在使用引导程序 3.0。
background:url('images/ip-box.png')no-repeat;
background-size:100%;
height: 140px;
display:block;
padding:0 !important;
margin:0;
在 100% 缩放时,这是可以的。但是当我放大到大约 180% 时,图像会从顶部和底部变短,我想要一些 css 技巧。
对于完整的图像背景,请检查:
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
我找到了这个:
满的
Bootstrap 3 网站的易于使用的全页图像背景模板
http://startbootstrap.com/template-overviews/full/
或者
在您的主 div 容器中使用:
html
<div class="container-fluid full">
</div>
CSS:
.full {
background: url('http://placehold.it/1920x1080') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
height:100%;
}
看一下这个,
body {
background-color: black;
background: url(img/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
尝试这个:
body {
background-image:url(img/background.jpg);
background-repeat: no-repeat;
min-height: 679px;
background-size: cover;
}
设置响应和用户友好的背景
<style>
body {
background: url(image.jpg);
background-size:100%;
background-repeat: no-repeat;
width: 100%;
}
</style>
文件路径'images/ip-box.png'
意味着 css文件与 images文件夹处于同一级别。
将“images”和“css”文件夹与“index.html”文件放在同一级别可能更常见。
如果是这种情况,并且 css 文件在其各自文件夹中的下一级,则ip-box.jpg
css 文件中指定的路径将是:'../images/ip-box.png'