gpt4 book ai didi

html - css 使用 zend 在 chrome 上工作正常但在 mozilla 中不工作

转载 作者:太空宇宙 更新时间:2023-11-03 21:44:31 25 4
gpt4 key购买 nike

我正在处理一个登录表单。我已经通过在 googlechrome 上对其进行测试来提供所有属性。完成表单后,我在 mozilla 中对其进行了检查。我指定的尺寸已完全改变,尤其是高度。我能知道这背后的原因吗?这是我的代码

input
{
padding: 13px 14%;
}
#email-wrapper #email-label
{
border: 1px solid #e5d4c2;
border-radius: 3px 0 0 3px;
border-right: 1px solid #FFF;
display: inline-block;
height: 39px;
line-height: 36px;
vertical-align: middle;
margin-right: 0;
width: 36px;
}

#email-wrapper #email-label label
{
background: url("~/application/modules/User/externals/images/mail.png") no-repeat scroll 19px 13px #FFFFFF;
background-size: 15px 15px;
}
#email-wrapper #email-label label
{
color:transparent;
}

最佳答案

请使用此 CSS 和跨浏览器:

input{
padding: 13px 14%;
}

#email-wrapper #email-label{

border: 1px solid #e5d4c2;
-webkit-border-radius: 3px 0 0 3px;
-moz-border-radius: 3px 0 0 3px;
-o-border-radius: 3px 0 0 3px;
-ms-border-radius: 3px 0 0 3px;
border-radius: 3px 0 0 3px;
border-right: 1px solid #FFF;
display: inline-block;
height: 39px;
line-height: 36px;
vertical-align: middle;
margin-right: 0;
width: 36px;
}

#email-wrapper #email-label label {
background-image: url("~/application/modules/User/externals/images/mail.png")
background-repeat:no-repeat;
background-color:#FFFFFF;
background-position:19px 13px;
background-size: 15px 15px;
}
#email-wrapper #email-label label{
color:transparent;
}

关于html - css 使用 zend 在 chrome 上工作正常但在 mozilla 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21325648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com