簡單一句話,利用 white-space & word-wrap 兩者合起來就可以搞定囉!
HTML:
<div>
<pre>
I am the pizza11 I am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizza
</pre>
CSS:
pre{
position:absolute;
left:10%;
border:solid 3px;
white-space: pre-wrap; // pre-wrap 設定使空白保留,但可正確換行
word-wrap: break-word;
}
HTML:
<div>
<pre>
I am the pizza11 I am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizzaI am the pizza
</pre>
CSS:
pre{
position:absolute;
left:10%;
border:solid 3px;
white-space: pre-wrap; // pre-wrap 設定使空白保留,但可正確換行
word-wrap: break-word;
}
留言
張貼留言