IE11対応 jsによるIEブラウザとバージョンの判別
var userAgent = window.navigator.userAgent.toLowerCase(); if( userAgent.match(/(msie|MSIE)/) || userAgent.match(/(T|t)rident/) ) { var isIE = true; var ieVersion = userAgent.match(/((msie|MSIE)\s|rv:) […]
WPなど案件構築覚書
var userAgent = window.navigator.userAgent.toLowerCase(); if( userAgent.match(/(msie|MSIE)/) || userAgent.match(/(T|t)rident/) ) { var isIE = true; var ieVersion = userAgent.match(/((msie|MSIE)\s|rv:) […]
忘れやすいので注意。 position:relative;をtable要素またはdisplay:table-cellにかけると、IEとFirefoxで指定したボーダーが出ない。 [必須]などのアイコンをpositionで揃える場合などで使用すると思うので、その場合にはtableにposition:relativeをかけるのではなく、該当セルにdivを挟みdivに対してposition:relati […]