Stop word-wrap dividing words

前端 未结 12 1299
南方客
南方客 2020-12-16 11:00
body { word-wrap: break-word;}

I\'ve been using that code (above) to fit the text in the body into it\'s container. However what I don

12条回答
  •  天命终不由人
    2020-12-16 11:29

    I use this Code for our website to stop the word-breaking:

    body {
        -ms-hyphens: none;
        -webkit-hyphens: none;
        hyphens: none;
    }
    

提交回复
热议问题