UI Changes in IE11

0
In chrome, Text box UI is working perfectly, But in IE11 UI is not working like Chrome, Alignments are changing. How to fix this in Mendix
asked
1 answers
0

First of all, you will have to find out what CSS-statements you will have to add to fix this bug. After that, you need to add that to your application’s styling.

Add an HTML snippet to the header of the page-layout that you are using always and in the HTML set this code:

<!--[if IE]>
  <link rel="stylesheet" type="text/css" href="theme/all-ie-only.css" />
<![endif]-->

After that, you can add the IE-specific patch to your styling.

answered