0

我很难让我的社交图标水平。我认为将它们向左浮动可以解决问题或使元素成为内联块。我被困住了,因此不胜感激。谢谢!

 <!-- Social network icons -->
 <div id="social">
 <ul class="soclist">
 <li><a class="youtube" href="img/youtube-logo.png" target="_blank" title="youtube"></a></li>
 <li><a class="twitter" href="img/twitter-logo.png" target="_blank" title="twitter"></a></li>
 </ul>
</div>

CSS:

/* Social Sidebar */

ul.soclist li {
display: inline-block
}

#social {
position: fixed;
top: 2px;
right: 73px;
width: 43px;
display: block;
}


a.youtube {
width: 48px;
height: 48px;
background: url(../img/youtube-logo.png) no-repeat;
display: block;
}



 a.twitter {
width: 48px;
height: 48px;
background: url(../img/twitter-logo.png) no-repeat;
display: block;
 }
4

2 回答 2

0

Try to remove the display:block from a:

a.youtube {
width: 48px;
height: 48px;
background: url(../img/youtube-logo.png) no-repeat;
/*display:block;*/
}



 a.twitter {
width: 48px;
height: 48px;
background: url(../img/twitter-logo.png) no-repeat;
/*display:block;*/
 }

here is an example inlining your links (without images )

于 2013-05-22T04:51:28.800 回答
0

删除“宽度:43px;” 来自#social。

于 2013-05-22T04:47:08.827 回答