-2

This is my website

I have cross-browser issue with IE. In that video play button contains border-radius that is not supported in IE. I have used video.js file.

CSS I used to solve this issue:

-web kit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;

I have try this CSS code but not solve this issue:

-ms-border-radius: 25px;
Yotam Omer
  • 15,310
  • 11
  • 62
  • 65
Umesh Panchani
  • 420
  • 3
  • 13

2 Answers2

0

You could try adding PIE.htc to your website. Especially if you're targeting IE < 9.

Tim Mac
  • 1,149
  • 1
  • 8
  • 17
0

here try this

Internet Explorer:

#yourId , * html #yourId , *+html #yourId {
-web kit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;            
border-radius: 25px\9;
            border-radius: 25px\0/;    
}

did it work?