我似乎无法让这些社交按钮完全正确对齐。我已将页面的边距设置为“0”并将对齐设置为右=“0” - 任何想法还有什么可做的?
网址为:http://www.radiobootcamp.org/TEST.html
谢谢!
答案 0 :(得分:0)
这将允许将社交媒体按钮对齐到右侧。 块级元素(如div或p)的初始宽度为 auto 。这使它扩展以占据其包含块内的所有可用水平空间。
.twitter {
border: 0 none;
height: 150px;
position: fixed;
right: 5px;
top: 400px;
width: auto;
}
答案 1 :(得分:0)
添加
style="text-align:right"
到那个twitter div
答案 2 :(得分:0)
事情是他们将浮动定义为左。我建议添加float:right !important;
,如果不能正常工作,请将每个按钮放在不同的div
height:auto
和width:auto
中,并将float:right
放在div
上容器。