Google Chrome - GridView单元格边框未正确显示

时间:2016-04-22 11:38:53

标签: google-chrome gridview asp-classic border

我需要在GridView中的一个特定单元格周围设置边框。它使用以下代码完成:

gvTrips.Rows[rowIndex].Cells[colIndex].BorderStyle = BorderStyle.Dashed;
gvTrips.Rows[rowIndex].Cells[colIndex].BorderWidth = 4;
gvTrips.Rows[rowIndex].Cells[colIndex].BorderColor = Color.DarkBlue;
gvTrips.Rows[rowIndex].Cells[colIndex].Font.Size = FontUnit.Larger;
gvTrips.Rows[rowIndex].Cells[colIndex].Font.Bold = true;

一切看起来都不错 IE (v 11.0.9600.1823) and Firefox (v 38.0.1)

但谷歌Chrome(v 49.0.2623.112)显示它 this

有人知道如何修复Google Chrome中的手机边框吗?或者更好的方法是如何在GridView中围绕一个特定单元格设置边框。

1 个答案:

答案 0 :(得分:0)

对我和我的搜索技巧感到羞耻。

答案可以在这里找到:Chrome bug with colspan and border?