我需要在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中围绕一个特定单元格设置边框。