我有一个简单的对象,我想在页面的某个位置显示。
代码:
.DownloadBtn
{
height:35px;
width:150px;
background:#09F;
display:block;
position:absolute;
margin:280px 60px;
}
<a href="/products.html" class="DownloadBtn">Download Now</a>
这会在 Firefox 上的最佳位置显示我的下载按钮。但是,在 Google Chrome 上,它在左侧滑动得更多。在 IE 上,它在左侧滑动得更多。
所以基本上,它有点像这样:
火狐:--------立即下载--------
铬:----立即下载------------
IE: --DownloadNow-----------------
有没有办法可以在所有浏览器的秒位置拥有它?谢谢您的帮助!