以下是我的代码....它在除Firefox之外的每个浏览器中都运行良好...在Firefox中,行的下边框不可见...我该如何解决?
<display:table class="displayTableBorder" export="false" style="width:95%;" rules="rows" summary="Plan actions and notes" name="planSummaryDTO.listPlanNoteDto" uid="planNote" rules="rows" requestURI="" pagesize="2">
<display:column class="table-row" style="border:1px solid black;" title="Action" headerClass="hixTableHeader header" class="displayTagtd" style="width: 10%;text-align: center;">
<a href="javascript:showUpdateWindow('UPDATE','${planNote.noteId}');" style="FONT-SIZE: 14px;font-family: Vegur;color: rgb(0, 0, 0); text-decoration:underline;font-weight:normal">${planNote.action}</a>
</display:column>
<display:column style="border:1px solid black;" property="createdDate" style="width: 20%;text-align: center;" title="Date" headerClass="hixTableHeader header" class="displayTagtd" />
</display:table>
答案 0 :(得分:1)
如果您是代码生成表,则删除内联样式并使用以下CSS
<style>
table, table tr, table tr td
{
border: 1px solid gray;
-moz-border: 1px solid gray;
-webkit-border: 1px solid gray;
border-collapse: collapse;
}
</style>
如果以上代码不适用于您,请在此处将生成的代码发送给我。我会解决你的问题。