<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin: 0;
padding: 0;
}
#left,#right, #bottom{
width: 80px;
height: 150px;
background-color: red;

}
#left{
position:fixed;
left: 0;
top: 180px;
}
#right{
position:fixed;
right: 0;
top: 180px;
}
</style>
</head>
<body>
<div>
这是一个标题
</div>
<div id="left">
这里是广告位
</div>
<div id="right">
这里是广告位
</div>

</body>
</html>

html css 左右广告位_css3