How can I make text wrap?

后端 未结 5 888
花落未央
花落未央 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条回答
  •  梦毁少年i
    2021-01-04 05:29

    Adding white-space: normal; to the legend works fine except in IE7 and IE6. Please see this jsfiddle demo

    After playing around a bit with the CSS, I got it work on IE7, IE8, IE9, FF3-4, and Chrome11 by adding a inside the with the below CSS:

    legend {
        white-space: normal; 
        width: 100%;
        *margin-left: -7px;
    }
    legend span {
        display:block;
        width: 100%;
    }
    

    Please have a look at this jsfiddle

提交回复
热议问题