IE9 fieldset rounded corners

2019-01-27 12:56发布

I cannot seem to make IE9 render a fieldset with rounded corners whereas other browsers do. Has anyone encountered this too ?

9条回答
爷、活的狠高调
2楼-- · 2019-01-27 13:46

To get IE9 to use rounded corners(CSS 3) you have to add this to the HTML header:

<meta http-equiv="X-UA-Compatible" content="IE=Edge" />

Then use CSS as normal: border-radius-right-bottom:15px;

I had the same issue & this fixed it.

查看更多
甜甜的少女心
3楼-- · 2019-01-27 13:47

its only working in latest rc build , aint working in beta version of IE9 try


.class {
 border-radius-right-bottom: 15px;
}

查看更多
放我归山
4楼-- · 2019-01-27 13:47

Fieldset rendering is always fraught with problems with rendering and particularly with printing. It's hardly surprising that it doesn't work.

The standard workaround is to add another container and style that.

查看更多
登录 后发表回答