设置成绝对定位,为什么span里的文字跑到上面了,不应该在盒子的下面吗?
设置成绝对定位,为什么span里的文字跑到上面了,不应该在盒子的下面吗?
设置成绝对定位,为什么span里的文字跑到上面了,不应该在盒子的下面吗?
2016-04-20
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>relative样式</title>
<style type="text/css">
#div1{
width:200px;
height:200px;
border:2px red solid;
//position:relative;
position:absolute;
left:100px;
top:50px;
}
</style>
</head>
<body>
<div id="div1"></div>
<span>偏移前的位置还保留不动,覆盖不了前面的div没有偏移前的位置</span>
</body>
</html>
举报