CSS中強制ul li中的文字換行
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文件</title>
<style type="text/css">
li{
display:block;
float:left;
width:40px;
margin-right:8px;
white-space:normal;
word-break : break-all;
word-wrap: break-word;
}
</style>
</head>
<body>
<div>
<ul>
<li>這裡放置的是例子1</li>
<li>這裡放置的是例子2</li>
<li>這裡放置的是例子3</li>
<li>這裡放置的是例子4</li>
<li>這裡放置的是例子5</li>
<li>這裡放置的是例子6</li>
</ul>
</div>
</body>
</html>