最新回答 / proto
我也单独写了个myfocus出来,但是好像有bug,第一页图片和底下的选择条贴不上,有条间隙,如图:<...图片...>后两页就是正常的:<...图片...>能力有限不知道这是什么原因啊
2015-11-29
ul{ list-style:none;}
li{ float:left;}
a{ display:block; width:50px;height:30px;line-height:30px;color:#000;text-decoration:none;text-align:center;}
a:hover{ color:#fff; background-color:#f00;}
li{ float:left;}
a{ display:block; width:50px;height:30px;line-height:30px;color:#000;text-decoration:none;text-align:center;}
a:hover{ color:#fff; background-color:#f00;}
已采纳回答 / redrain_lin
怎么居中?水平居中?垂直居中?两者都要?水平居中,你可以img {display:block; margin:0 auto;}垂直居中,在P高度不知道的情况下,建议用js算出来。如果知道p高度,就用img{margin-top:(p高度-img高度)/2}同时居中,你结合两个。还有另一个办法就是把img作为p的背景使用,在控制居中上较为容易。
2015-11-28