不给a标签定一个宽度的话,鼠标移上去时会无限拉长,那么在不写死a标签宽度的情况下如何解决此问题?
a{
text-decoration: none;
display: block;/*把a标签改为块元素*/
color: #000000;
height: 40px;
line-height: 40px;
background: #cccccc;
/*padding: 0 20px;*/
text-align: center;/*水平居中*/
margin-right: 1px;
}
a{
text-decoration: none;
display: block;/*把a标签改为块元素*/
color: #000000;
height: 40px;
line-height: 40px;
background: #cccccc;
/*padding: 0 20px;*/
text-align: center;/*水平居中*/
margin-right: 1px;
}
2016-03-12
举报