我刚刚设法启动并运行了一个基于 style.css 的网站
CSS 文件代码为
html
{
height:100%;
}
{
position: relative;
z-index: 0;
width: 100%;
left: 0;
top: 0;
cursor:default;
overflow:visible;
}
body
{
padding: 0;
margin:0;
color: #000000;
height:100%;
min-height:100%;
background-color: #D3D8FD;
background-image: url('images/Bottom_texture.jpg');
background-repeat: repeat-x;
background-attachment: fixed;
background-position: top center;
min-width: 820px;
}
.cleared
{
display:block;
clear: both;
float: none;
margin: 0;
padding: 0;
border: none;
font-size: 0;
height:0;
overflow:hidden;
}
我无法理解如何更改此值,因此当在大屏幕上打开页面时,空白空间和 100% 水平拉伸不存在。我只需要页面的实际大小。所以没有留下空白空间。我已经阅读了所有关于 css 的内容,但无法获得合适的代码,因为我不太擅长。
谢谢你。