cancel
Showing results for 
Search instead for 
Did you mean: 

How to overcome the css problems in IE

Former Member
0 Kudos

Hi all,

I have developed a application, which i tried to run to run in different browsers. In Google Chrome its working properly.

But when i run the same application in Internet Explorer some CSS are not affecting properly. The thing i noticed in the debugger is the application is loading the library.css file from resources, means from the below path its taking that css file and it is affecting my application.

https://sapui5.netweaver.ondemand.com/resources/sap/m/themes/sap_bluecrystal/library.css

Where as in Chrome its not loading any such library.css file.

How can i over come this..?

Please help me on this.

Thanks,

Sathish.

Accepted Solutions (0)

Answers (3)

Answers (3)

0 Kudos

This message was moderated.

antonette_oberholster
Active Contributor
0 Kudos

This message was moderated.

agentry_src
Active Contributor
0 Kudos

Hi Satish,

What version of IE are you working with?  If IE8 (or earlier), you will have some difficulties.

Regards, Mike

SAP Customer Experience Group - CEG

Former Member
0 Kudos

Hi Michael,

Iam using the IE11 version.

Thanks

Sathish.

Former Member
0 Kudos

Hi Sathish,

If you are using your own custom css for your application, mention the browser specific in your css file for the controls.

Like the below.

html[data-sap-ui-browser*='ie'] .sapMFlexItem button .sapMBtnContent {

  padding-top: 10px;

}

or use

-ms-text-size-adjust: 10px; !important;