css - Angular Material <span flex/> in IE10 doesn't take up space -
i have following:
<div layout="row"> <span>left side</span> <span flex/> <span>right side</span> </div> where middle <span flex/> push "right side" right. works great on chrome, safari, firefox, ie11 not ie10.
the flex attribute angular material looks have added -ms specifics not working ie10.
any suggestions?
the simple solution i've ended replace <span> <div>. instead of:
<div layout="row"> <span>left side</span> <span flex/> <span>right side</span> </div> use:
<div layout="row"> <div>left side</div> <div flex/> <div>right side</div> </div> that's working great on ie10.
Comments
Post a Comment