在 Firefox 和 Chrome 中,Table Booking 小部件似乎与网站对齐。但有人告诉我,它在 Firefox 和 Chrome 中不是内联的。但我似乎无法复制这一点,任何人都可以对此有所了解。
问问题
286 次
3 回答
1
在第 199 行的 index.html 文件中,您有特殊的 -moz 样式:
@-moz-document url-prefix() {
.OT_wrapper {
margin: -10px 0 5px 450px;
}
您应该添加此边距边距:-10px 0 5px 450px; .OT_wrapper 也适用于 Chrome。
于 2012-07-23T15:34:16.200 回答
0
尝试改变
@-moz-document url-prefix() {
.OT_wrapper {
margin:-10px 0 5px 0px;
}
}
至
.OT_wrapper {
margin:-10px 0 5px 0px;
}
于 2012-07-29T11:06:10.577 回答
0
.OT_wrapper {
background-color: rgb(246, 246, 243);
margin-left: 0px;
}
于 2012-07-23T15:26:42.240 回答