/*禁止横向滚动条出现*/ body{ overflow-x:hidden; } /*文本超出宽度自动换行*/ .wrap{ word-wrap:break-word; word-break:break-all; -ms-word-break: break-all; -webkit-nbsp-mode: space; -webkit-line-break: normal; -webkit-hyphens: auto; -moz-hyphens: auto; -o-hyphens: auto; hyphens: auto; }
使用以上代码可实现关闭横向滚动,文本超出宽度自动换行。