CSS3 -ms-max-content in IE11

前端 未结 4 903
悲&欢浪女
悲&欢浪女 2020-12-16 10:56

We can set in CSS3 -moz-max-content (for Firefox) and -webkit-max-content (for Chrome, Safari) as width, but it seems -ms-max-co

4条回答
  •  無奈伤痛
    2020-12-16 11:53

    This works on IE11, Chrome and Firefox

    instead of

    width: -moz-max-content;
    width: -webkit-max-content;
    width: -o-max-content;
    width: -ms-max-content;
    

    I used

    width: auto;
    white-space: nowrap;
    

提交回复
热议问题