I want to show the screen in "100%" size in IE with CSS. The default zoom size for IE for my clients' computer is 150%. To show the screen properly without asking my clients to change the default zoom setting, I thought I can set the css 67%.(150% x 67% = 100.5%)
I have tried both "zoom : 67%" and "transform : scale(67%)", but neither of them worked properly.
Does anybody have idea how to fix the problem with CSS?
"The easiest way to fix would be NOT writing any CSS and Asking my client to see the page with 100%"... hope somebody can solve this. I have tried the width: 1920px, and it also didn't work.
Hope the code below helps. I am currently using lowcode platform Mendix and customizing the given layouts.
.layout-atlas-responsive-default {
$sidebar-width: 60px;
zoom: 67%;
//.mx-placeholder seems to decide the width
//.mx-placeholder{
//width: 1920px;
@media (min-width: $screen-md) {
.mx-scrollcontainer:not(.mx-scrollcontainer-open) > .region-sidebar {
width: $sidebar-width!important;
.mx-scrollcontainer-wrapper > .mx-navigationtree ul li {
&.mx-navigationtree-has-items:hover {
a {
background-color: $navsidebar-sub-bg;
font-size: 14px;
color: white;
}
a:hover{
IE default zoom(sorry it's in Japanese, but hope you understand what I meant)
CSS 67% zoom with default IE screen (150%)/ The Screen I got :(
no CSS zoom with IE screen(100%)/ The screen I want :)
CSS 100% zoom with default IE screen (150%) / The screen I want to change from. When I changed the IE screen zoom to 100%, it looked properly.