私は一日中このスタイルの問題を解決しようとしてきましたが、無駄でした。
テーブルラインの周囲には灰色の境界線が必要です。InternetExplorer8を除くすべてのブラウザで正常に動作します。
.order_table table {
border-collapse: collapse;
}
.order_table table tbody tr {
border: 1px solid #DEDEDE;
}
それは確かに最初のものを除いてテーブル全体に境界線を与えます<TD>
が、それから私はそれを使ってそれを強制しようとしました
.order_table table td.product_format {
border-bottom: 1px solid #DEDEDE;
border-top: 1px solid #DEDEDE;
}
しかし、それは機能しませんでした。誰かが私を正しい道に導くことができますか?