how can I scale an entire web-page for IE

0
It may be inappropriate to ask CSS question here, I am sorry about that, but please help me out. I‘ve set “zoom:67%” to fit my page for chrome and edge. Now IE11 went wrong. I want to view my page with 150% in IE. Anybody has idea to fix it?
asked
1 answers
0

Try the following media query specific to IE browser only. 
 

 IE10+
 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
 selector { property:value; }
 }
answered