样式在Mac上不起作用但在Windows上正确

时间:2015-02-06 12:20:13

标签: html css windows macos

我有一个可以在Windows上完美运行的搜索栏但不是mac,我们有3个不同的人试用它们并且他们报告说搜索栏不在正确的位置

以下是它的外观:http://puu.sh/fxTdJ/a19ae11d62.jpg

以下是款式:

#search {
    position:relative;
    top:-30px;
}
#search div {
    padding-right:0;
}
#search button {
    height:33px;
    margin-top:1px;
    background:#666;
    color:#ccc;
    border:1px solid #666;
    border-radius:3px;

}

这是网址 http://178.62.26.90/essentialweddinghire/public/home

2 个答案:

答案 0 :(得分:2)

尝试将clear:both提供给您的css中的#search

#search {
    clear: both;
    position: relative;
    top: -30px;
}

答案 1 :(得分:0)

无需执行任何操作只需从代码中删除padding-left: 0; .nav

.nav {
 padding-left: 0;
}

这个问题在Mozilla也在这里看。 我想这会对你有所帮助。以上答案也是正确的。由时代赋予