为什么<a class=“test”>标签不能达到盒子顶部边缘,而<in
仿豆瓣
*{margin:0px;padding:0px;
}
a{text-decoration: none;
}
li{list-style-type:none;
}
img,input{
border:none;
border:1px solid none;
}
#head{
width:1152px;
height:88px;
border:solid 1px red;
margin:0px auto;
position:relative;
}
#head .head-logo{background:url(../images/logo.png);
display: block;
width:158px;height:31px;
position:absolute;
left:0px;
top:29px;
}
#head .head-search{
width:272px;height:32px;
border:1px solid #c3c3c3;
position:relative;
left:185px;top:0px;
color:#e4e4e4;
}
#head .test{
display: block;
color:red;
position:relative;
left:0px;
top:0px;
}
a {color:#d5e1e7;
}
a:hover{
background-color: #4b83af
}
123 |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
你两个都给的relative,相对定位的元素不会脱离标准文档流 所以飘不上去,相对定位是相对自身原来的位置定位 所以你给top:0和left:0相当于保持原来我位置不变 |
|
|
|
|