让网页文件居中和压缩时向左对齐不变型...(很弱智的问题)
首先在网页文件的body标签中加入center标签:
如
<body>
<center>
<div id="all">
dosomething
</div>
</center>
</body>
在对应的css里面加入
#all{
background: url(./images/background.gif) no-repeat;
height:70em;
width: 64em;
}
height为背景的高度.width为背景的宽度.记得宽度一定不要用百分之几的.不然调整网页大小的时候会变型.
然后在<div id="all">中间的元素的width都可以用百分之几来表示.
在网页里加入css:
<head>
<link rel="stylesheet" type="text/css" href="./mycss.css" />
</head>