我有一个问题,我有一个颜色块,我使用它就像一个按钮,它在 Firefox 和 IE 中很好地放置,但由于某种原因,在 Safari 中位于我希望它所在的位置下方(见图)。
任何关于我做错了什么的指针都将不胜感激,因为我已经摆弄了一段时间并且似乎无法让它工作(?)
(我认为)相关的 CSS 是:
//the element that represents the button that is floating
//too low in safari:
#addplacebtn {
text-align: center;
margin-top: 0em;
margin-bottom: 0em;
display: inline-block;
width: 35px;
float: right;
background-color: #226083;
}
//the element that is containing the problematic element
#edit-addplacebtn {
height: 45px;
width: 35px;
top: 5px;
}
//the element containing the above element
.tbrow {
height: 35px;
width: 285px;
margin-bottom: 5px;
margin-top: 5px;
}