最赞回答 / 慕粉3116693
因为你只给了它定位属性,而没有给它定位性质。打个比方,炫舞里面的翅膀知道吧,需要有飞行徽章才能飞起来。你这个就相当于有了翅膀,你没给它安飞行徽章,它飞不起来啊!
2018-07-06
ul{
list-style: none;
}
ul li {
float: left;
margin-right: 2px;
position: relative;
bottom: 63px;
left: 418px;
}
list-style: none;
}
ul li {
float: left;
margin-right: 2px;
position: relative;
bottom: 63px;
left: 418px;
}
2018-06-20
<style type="text/css">
*{
margin: 0 ;
padding: 0;
}
#div1{
font-size: 18px;
font-weight:bold;
margin: 0 auto;
position: relative;
background: white;
bottom: 715px;
width: 1250px;
height: auto;
}
*{
margin: 0 ;
padding: 0;
}
#div1{
font-size: 18px;
font-weight:bold;
margin: 0 auto;
position: relative;
background: white;
bottom: 715px;
width: 1250px;
height: auto;
}
2018-06-20
已采纳回答 / 精神第一性
relative:相对定位,以窗口左上角为原点。所以结论是:top:50px;原点向下移动50个像素。top:-50px;原点向上移动50像素。这时候会有50像素溢出窗口,就看不见了。
2018-05-30