2013年8月19日 星期一

CSS 固定欄寬 自動斷行

.table01{
    width:650px;
    table-layout:fixed;  /*固定欄寬*/
    word-wrap:break-word;  
    overflow:hidden;
 }
/*欄位寬也要設定*/
.table th{
    width:200px;
}
 .table td{
   450px;
}

---------------------------------------------------

.div01{
    width:650px;
    word-wrap:break-word;  
    overflow:hidden;
}



1. word-wrap: 單字換行
2. word-break: 斷字的方法,用於長字串








參考資料:
http://www.dugukeji.com/mb/divcssjiaocheng/16639.html
http://hihicharles.blogspot.tw/2010/12/css-word-wrap.html

沒有留言:

張貼留言