gpt4 book ai didi

android - android jelly Bean WebView 中的背景图像位置问题

转载 作者:太空宇宙 更新时间:2023-11-04 13:22:46 24 4
gpt4 key购买 nike

背景图像位置在 Jelly Bean webView 中不呈现,但在 KitKat 版本中工作正常

CSS

    .clearable{
background:url("../images/txtclear.png") no-repeat right 5px center !important;
border:1px solid #999;
padding:3px 18px 3px 4px;
border-radius:3px;
transition: background 0.4s;
}

HTML

<html>
<body>
<input value="" id="txtsearch" type="email" placeholder="Enter Search string" class="clearable"/>
</body>
</html>

我也引用了以下 URL 中的类似帖子,但这不能解决我的问题。 background-attachment messes up rendering in Jelly Bean WebView?

最佳答案

具有四值语法的

background-position 仅在 Android 4.4 及更高版本中受支持,这就是它无法正确呈现的原因。

http://caniuse.com/#feat=css-background-offsets

对于那些版本,您可以使用后备规则以正确显示。只需调整 % 或 px 以匹配您的元素宽度和高度。

.clearable{
background-position: 95% 50%; /* Will apply only for < 4.4 */
background-position: right 5px center;
}

希望这对您有所帮助!

问候

关于android - android jelly Bean WebView 中的背景图像位置问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23925426/

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