本文介绍了Galaxy S4股票浏览器CSS3 border-radius支持?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是一个非常具体的问题,我找不到任何文件证据支持,但有相当多的实证证据,虽然只基于一个电话。

This is a very specific question, that I can't find any documented evidence to support, but have rather a lot of empirical evidence, although only based on a single phone.

我们在办公室提供的单一Galaxy S4似乎不支持其股票浏览器中的 border-radius 属性。我测试了几个不同的网站,并已尝试所有不同的浏览器版本的属性(webkit,moz等),它似乎不支持它。

The single Galaxy S4 that we have available in the office doesn't appear to have support for the border-radius property in it's stock browser. I've tested several different websites, and have tried all different browser versions of the property (webkit, moz, etc), and it just don't seem to support it.

因为我们只有1 S4可用(我问过,没有人有一个或知道任何人做),并且因为圆角通过 border-radius 属性是CSS3的一个很大的特征,我觉得很难相信他们会故意删除它,这使我相信:

Because we only have 1 S4 available (I've asked around, and no one else has one or knows anyone who does), and because rounded corners via the border-radius property was such a big feature of CSS3, I find it hard to believe that they would have removed it deliberately, which leads me to believe that either:


  1. 我在股票浏览器中发现了一个错误,

  2. 这是我们唯一可用的手机的设备。

因此,以前有任何人遇到过,或者任何人有S4可用,他们可以检查以查看是否支持 border-radius

So, has anyone else come across this before, or does anyone have an S4 available to them that they could check on http://css3test.com/ to see if border-radius is supported?

推荐答案

我有同样的问题!
你可以这样修复:

I had the same issue!You can fix it like that:

border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;

PS。我讨厌此类更新

PS. I hate such updates

这篇关于Galaxy S4股票浏览器CSS3 border-radius支持?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 08:29