在我的一个页面http://artistsatlaketahoe.com/abstract.html上,Paypal按钮显示在FireFox和Chrome中的文本下方,但不在IE8中。通过在与购物车图片相关的Paypal代码段中添加以下内容,我获得了在FF和Chrome中工作的中心位置:
style =“display:block; margin:0 auto;”
不幸的是,它在IE8中无效。有什么建议?谢谢!
答案 0 :(得分:2)
给按钮增加宽度
答案 1 :(得分:1)
对于IE,按钮需要有一个宽度,按钮的容器应该有text-align:center;集。
/*Center the paypal button in IE*/
#paypal-button-container{
text-align:center;
}
/*Center the button in modern browsers*/
#paypal-button{
display: block;
margin: 0 auto;
width: 100px;
}
答案 2 :(得分:0)
添加align="left";