How can I make text wrap?

后端 未结 5 869
花落未央
花落未央 2021-01-04 04:41

Usually text is pretty short so I had no idea this was a problem until I ran into it yesterday. I was trying and failing to set a 50% wi

5条回答
  •  礼貌的吻别
    2021-01-04 05:12

    It's been a while since the question was posted, but now IE10 is here for some time and still sux while beeing so 'modern'. additionally one has no ability to use conditional comment. Here's what does the trick:

    legend {
      white-space: normal;
      display: table; /* IE10 */
    }
    

提交回复
热议问题