同时显示问题
有没有办法可以同时显示移动前和移动之后的div位置就像效果图那样
有没有办法可以同时显示移动前和移动之后的div位置就像效果图那样
2018-09-04
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>relative样式</title>
<style type="text/css">
#box1{
width:200px;
height:200px;
border:2px red dotted;
position:absolute;
}
#div1{
width:200px;
height:200px;
border:2px red solid;
position:relative;
left:100px;
top:50px;
}
</style>
</head>
<body>
<div id="box1"> try</div>
<div id="div1"></div>
<span>偏移前的位置还保留不动,覆盖不了前面的div没有偏移前的位置</span>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>流动模式下的块状元素</title>
<style type="text/css">
#one{
color: red;font-size: 20px;
border: 2px dashed red;
width: 300px;height: 300px;
position: relative;
}
#two{
color: red;
border: 2px solid red;
height: 300px;width: 300px;
position: absolute;
top: 50px;
left: 70px;
}
</style>
</head>
<body>
<div id="one">之前的位置
<div id="two">移动后的位置
</div>
</div>
</body>
</html>
举报