<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.box {
width: 1002px;
margin: 0 auto;
}
.ad-l {
position: fixed;
top: 200px;
left: 50%;
/*1002/2 版心的一半 + 120px 盒子自己的宽度 + 10px的缝隙*/
margin-left: 380px;
}
.ad-r {
position: fixed;
top: 200px;
right: 50%;
margin-right: 380px;
}
</style>
</head>
<body>
<div class="box">
<img src="images/box.png" alt="">
</div>
<!-- 左右的固定定位 -->
<img src="images/ad-l.png" alt="" class="ad-l">
<img src="images/ad-r.png" alt="" class="ad-r">
</body>
</html>