MicroFocus / ux-ias

Micro Focus IAS UX standards for presentation and layout of UI elements.
MIT License
6 stars 4 forks source link

.ias-fill style needs more information for IE11 #14

Open jalbr74 opened 6 years ago

jalbr74 commented 6 years ago

IE11 currently doesn't respect the CSS attribute: "flex-grow: 1" for the CSS selector: ".ias-fill" (used in situations like: <span class="ias-fill"></span>).

However, simply adding "display: inline-block" seems to fix the problem. I.e.:

.ias-fill {
    display: inline-block;
    flex-grow: 1;
}

I just thought I'd report that here, in case we want to add the attribute to ux-ias by default.

ldchrist commented 2 years ago

I agree.