障害メモ/Chromeでテーブルの罫線が表示されない
キーワード
- WebKit
- Google Charome
- Safari
- table
- border
現象
原因
対策
$(function() {
if (window.navigator.userAgent.toLowerCase().indexOf('webkit') != -1) {
$('table').css({
'border-collapse': 'separate',
'border-spacing': '0',
'cellspacing': '0'
});
$('table').children('tbody').children('tr:not(:last-child)').children('td:not(:last-child)').css({
'border-right': '0',
'border-bottom': '0'
});
$('table').children('tbody').children('tr:not(:last-child)').children('td:last-child').css({
'border-bottom': '0'
});
$('table').children('tbody').children('tr:last-child').children('td:not(:last-child)').css({
'border-right': '0'
});
$('table').children('tbody').children('tr:last-child').children('td:last-child').css({
});
}
});
備考
参考
作成日 2015-02-13
