首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

让网页文件居中和压缩时向左对齐不变型.(很弱智的有关问题)

2012-11-22 
让网页文件居中和压缩时向左对齐不变型...(很弱智的问题)首先在网页文件的body标签中加入center标签:如bo

让网页文件居中和压缩时向左对齐不变型...(很弱智的问题)
首先在网页文件的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>

热点排行