This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center
                            
                        
                    
                
                                7年前关闭。
            
                    
我想在所有浏览器中将表格的左上角四舍五入。

我尝试了这个:

-webkit-border-top-left-radius: 9px;

-moz-border-radius-topleft: 9px;

border-top-left-radius: 9px;


但它似乎不适用于Google chrome。谁能看到错误?我还确定它曾经可以工作...

最佳答案

border-top-left-radius:9px;


要么

border-radius:9px 0 0;


作品。如果不是这样,那么这就是您的CSS中的问题-可能是其他一些具有更高特异性的样式声明取代了此规则。

关于google-chrome - Google Chrome中的CSS圆 Angular ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11192704/

10-11 03:04
查看更多