CSS 完美的整页背景图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 完美的整页背景图像相关的知识,希望对你有一定的参考价值。
// HTML
<div id="bg">
<div>
<table cellspacing="0" cellpadding="0">
<tr>
<td>
<img src="images/bg.jpg" alt=""/>
</td>
</tr>
</table>
</div>
</div>
<div id="cont">
<div class="box">
<!-- content in here -->
</div>
</div>
// CSS
* {
margin: 0;
padding: 0;
}
html, body, #bg, #bg table, #bg td {
height:100%;
width:100%;
overflow:hidden;
}
#bg div {
height:200%;
left:-50%;
position:absolute;
top:-50%;
width:200%;
}
#bg td {
text-align:center;
vertical-align:middle;
}
#bg img {
margin:0 auto;
min-height:50%;
min-width:50%;
}
#cont {
position:absolute;
top:0;left:0;
z-index:70;
overflow:auto;
}
.box {
margin: 0 auto;
width: 400px;
padding: 50px;
background: white;
padding-bottom:100px;
font: 14px/2.2 Georgia, Serif;
}
以上是关于CSS 完美的整页背景图像的主要内容,如果未能解决你的问题,请参考以下文章
CSS CSS整页图像背景
css 整页背景图像
css 整页背景图像
mPDF:为整页使用背景图像
如何在 .NET 中处理具有 Windows Photo Gallery 质量的整页打印图像?
在整页、变暗、模糊的背景图像上添加居中文本?