http://marcosballester1.hol.es/test/test2.html
左侧正确居中,但右侧没有。实际代码:
<style>
.wrapper {
width: 900px;
margin: auto;
}
</style>
<div class="wrapper">
HelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHello
</div>
由于
答案 0 :(得分:1)
目前您的内容没有空格:
.wrapper {
width: 900px;
margin: auto;
word-wrap: break-word; // this rule will resolve your problem
}
答案 1 :(得分:0)
由于您的文字位于牢不可破,因此您需要使用带有break-word
值的 word-wrap 属性:
表示通常不会破坏的单词可能会被任意破坏 如果行中没有其他可接受的断点,则指向。
#wrapper {
width: 50%;
margin: 0 auto;
word-wrap: break-word;
}