Breaking

Monday, May 6, 2013

CSS word-wrap

word-wrap 3

Thuộc tính word-wrap sẽ làm cho những từ dài xuống hàng mà không làm vỡ layout.

Thuộc tính giá trị Ví dụ Mô tả
word-wrap break-word word-wrap: break-word; Những từ quá dài sẽ xuống hàng.
normal word-wrap: normal; Trả về dạng mặc định ban đầu cho word-wrap.

Xem ví dụ

<style>
p.test
{
max-width:200px;
border:1px solid #000000;
word-wrap:break-word;
}
</style>

<p class="test"> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Sự tương thích ( Cập nhật / Báo lỗi )

Firefox Opera Google Chrome Safari IOS Android Window phone
* * * * * * * *

No comments:

Post a Comment