Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

internet explorer 11 rgba refuses to work

I am using IE 11 and it refuses to make rgba work on my page, while rgba works on some web sites, i can't understand why

My page: note the rgba underlined with red My page

some internet page: rgba works ok

enter image description here

like image 802
max4ever Avatar asked Dec 07 '22 02:12

max4ever


1 Answers

apparently IE11 was using IE7 mode as default rendering

using

<head>
<meta http-equiv="x-ua-compatible" content="IE=edge" />

fixes it :)

like image 150
max4ever Avatar answered Feb 09 '23 01:02

max4ever