1、 首先根据操作系统的版本来选择IIs的版本
XP系统:适合安装IIS 5.1版本
2000系统:适合安装IIS 5.0版本
2003系统:适合安装IIS 6.0版本
2008 / Vista系统:适合安装IIS 7.0版本
2、安装
开始--控制面板--添加或删除程序--添加/删除Windows组件--勾选Internet信息服务--下一步
之后弹出窗体你就预览到你IIS安装包的地方
3、安装完后
控制面板--管理工具--Internet信息服务--右击默认网站--属性--文档--添加--4-4.html
4、在C:\Inetpub\wwwroot下面新建一个 4-4.html文件,用记事本打开并将下面代码粘贴到4-4.html保存
<html>
<head>
<title>position属性</title>
<style type="text/css">
<!--
body{
margin:10px;
font-family:Arial;
font-size:13px;
}
#father{
background-color:#a0c8ff;
border:1px dashed #000000;
position:relative;
width:100%;
height:100%;
}
#block{
background-color:#fff0ac;
border:1px dashed #000000;
padding:10px;
position:absolute; /* absolute绝对定位 */
left:20px; /* 块的左边框离页面左边界20px */
top:40px; /* 块的上边框离页面上边界40px */
}
-->
</style>
</head>
<body>
<div id="father">
<div id="block">absolute</div>
</div>
</body>
</html>
如果不进行第三步、第四步,直接在浏览器里面输入localhost
将会出现无法显示的页面