代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
nav{
margin: 5px
width: 100pxheight: 200px
background-color: red
float: right
}
</style>
</head>
<body>
<nav class="right">右</nav>
<nav>中</nav>
<nav>左</nav>
</body>
</html>
1.新建一个txt文件,把扩展名改为css,即 文件名.css2.在里面写入
#你的DIV名字
{
position:absolute这是绝对定位
margin-left:100px距左多少
margin-top:200px距上多少
margin-bottom:300px距底部多少
margin-right:400px距右多少
}