本文介绍了如何为背景的html表提供圆角?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hai,

如何为html表提供圆角。使用css完成圆角,但是圆角css不支持IE8,所以我需要另一种方法来给出rounede角而不使用背景图像另外。

 rounded_edges  {
- moz-border-radius 15px;
border-radius 15px;
}





以上代码适用于 IE9 firefox chrome ,但在 IE8 不起作用,请解决我的问题,

注意:不使用背景图片。



Thanx

Aravind

解决方案



Hai,
How to give rounded corner for html table .i done rounded corner using css,but rounded corner css not support IE8,so i need another way to give rounede corner without using background image also.

.rounded_edges {
        -moz-border-radius: 15px;
        border-radius: 15px;
      }



The above code works in IE9,firefox and chrome,but in IE8 not works,pls solve my problem,
Note: Without use background image also.

Thanx
Aravind

解决方案



这篇关于如何为背景的html表提供圆角?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 07:48