2

我有一些在 Chrome、FireFox 和 IE 中运行良好的 CSS,但在 Opera 中看起来很奇怪。

链接到小提琴

另外,我截图了:

这是刚刚忘记链接悬停时发生的情况:

在此处输入图像描述

这发生在表单焦点上(完全灾难):

在此处输入图像描述

Chrome中的正常外观:

在此处输入图像描述

  1. 焦点上的提交按钮失去了它的边框颜色(为什么在地狱?!)
  2. 焦点有点乱,我无法解释,请看第二张照片

我在最新版本的 Opera 上进行了测试。这个浏览器到底有什么问题?甚至 IE8 也能按我的预期显示一切。

CSS:

.sign_in {

    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -255px;
    background: #ffffff;
    width: 510px ;
    height: 240px;
    font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
    z-index: 9999999;
    font-size: 14px;
    -webkit-box-shadow: 0 0 5px black;
    -moz-box-shadow:    0 0 5px  black;
    box-shadow:         0 0 5px  black;


}
.signs_form{
    border-right-style: solid;
    border-color:  rgba(80, 140, 255, 0.83);
    border-width: 1px;
    margin-top: 40px;
    vertical-align: 100%;
    margin-left: 50px;
    padding-right: 50px;
    font-weight: 500;
    display: inline-block;




}

input#email{

    border-style: solid;
    border-color:  #378de5;
    border-width: 1px;
    padding: 3px 3px 3px 3px;
    font-size: 14px;
    outline: none;
    font-style: normal;
    font-weight: 400;


}
input#email:focus{
    border-color: rgba(2, 22, 222, 0.97);

}
input#password{
    border-style: solid;
    border-color:  #378de5;
    border-width: 1px;
    padding: 3px 3px 3px 3px;
    font-size: 14px;
    outline: none;
    font-style: normal;
    font-weight: 400;

}

input#password:focus{
    border-color: rgba(2, 22, 222, 0.97);

}




.sign_in_submit {
    margin-top: 0;
    border: solid 1px #378de5;;
    background-color: #ffffff;
    color: #378de5;
    padding: 2px 5px 2px 5px ;
    font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
    font-size: 16px;
    font-weight: 500;


}
.sign_in_submit:hover {
    cursor: pointer;
    border-color: rgba(2, 22, 222, 0.97);
    color: rgba(2, 22, 222, 0.97);
}


#close {

    float: right;
    padding-left:-10px;
    padding-top: -10px;
    margin-right: 5px;


}
#close_sign_in_popup {
    text-decoration: none;
    font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
    font-size: 20px;
    color: #d61354;
}

#close_sign_in_popup:hover {
    color: #fc145f;
}
.forgot_pass{
    display: block;
    margin-top: 5px;
    margin-bottom: 0;
    margin-left: 2px;
    font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
    color: #378de5;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
}

.forgot_pass:hover{
    height: 100%;
    text-decoration: underline;
}
4

2 回答 2

0

Forked http://jsfiddle.net/w29WQ/1/

.sign_in {
    /*top: 50%;  // so it seems the positioning gets all funky in opera
    left: 50%;*/
    margin-top: 0;
    margin-left: 0;
    /* Your other styles for this element */
}

Anyhow, seems your fixed positioning was causing errors, I simply commented out the top and left positioning in the containing div, and reset the margins to keep the element displayed.

于 2013-05-29T04:20:17.507 回答
0

好了朋友们。

1)形式的转变

原因是 Opera 非常不喜欢inline-block作为 form 属性,其实这很符合逻辑,但其他所有浏览器都理解这一点,而且很方便

2) 字段焦点上提交按钮的边框颜色丢失

但是在这里 - Opera bug,可以通过放置在真实标签隐形副本之前来修复 - 所以它就像这个 Opera bug 的诱饵。

于 2013-05-29T07:17:01.990 回答