2020年4月20日 星期一

[研究][ASP.NET][WebForm] GridView 欄位內容文字中強迫自動換行、斷行

[研究][ASP.NET][WebForm] GridView 欄位內容文字中強迫自動換行、斷行

2020-04-20
2022-05-31更新

protected void Page_Load(object sender, EventArgs e)
{
    //正常換行
    //GridView1.Attributes.Add("style", "word-break:keep-all;word-wrap:normal");

    //強迫字中自動換行
    //GridView1.Attributes.Add("style", "word-break:break-all;word-wrap:break-word");
}

強迫字中換行,但有最低寬度限制

<td style="word-break: break-all; min-width: 45px;">12345678901234567890123456789
1234567890123456789012345678900123456789012345678901234567890</td>

//ListView 的強迫字中自動換行無效,要直接加在 ItemTemplate 中各控制項中
ListView1.Attributes.Add("style", "word-break:break-all;word-wrap:break-word");


(完)

相關文章

[研究][ASP.NET][WebForm] GridView 欄位內容文字自動換行、斷行
https://shaurong.blogspot.com/2020/04/aspnetwebform-gridview.html

[研究] CSS li 不自動換行、斷行
https://shaurong.blogspot.com/2020/04/css-li.html

[研究][ASP.NET][WebForm] GridView 欄位標題列文字自動換行、斷行
https://shaurong.blogspot.com/2018/11/aspnet-webform-gridview.html

[研究] 用 CSS 的 word-break: break-word; 強迫自動換行、斷行
https://shaurong.blogspot.com/2017/07/css-word-break-break-word-td.html

沒有留言:

張貼留言