私はページの右側にボックスを持っており、左側に長い単語を表示する必要があります。 私の問題は、長い単語がボックスの後にジャンプすることです。私は "単語の折り返し:ブレークワード"を追加します。 - 同じですが。css、html show long words
サンプルを見てください:瞬間からhttp://jsfiddle.net/2dpcA/
<style>
.page{
width: 380px;
height: 600px;
margin: 0 auto;
background-color: #146A01;
word-wrap: break-word;
}
.box{
float: right;
width: 200px;
min-height: 200px;
background-color: #336699;
}
</style>
</head>
<body>
<div class="page">
<div class="box">Some text</div>
Lorem ipsum<br/>
Lorem ipsum small text small tekst small<br/>
VerylongTextIsHEREVerylongTextIsHEREV
</div>
</body>
私はあなたが間違ったフィドルをリンクしたと思います – Dampsquid