<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>固定定位</title>
<style>
.box{
width: 1002px;
margin: 0 auto;
}
.left{
position: fixed;
top: 100px;
left: 0;
}
.right{
position: fixed;
top: 100px;
right: 0;
}
</style>
</head>
<body>
<img src="images/ad-l.png" alt="" class="left">
<img src="images/ad-r.png" alt="" class="right">
<div class="box"><img src="images/box.png" alt=""></div>
</body>
</html>

5万+

被折叠的 条评论
为什么被折叠?



