たぶん既出ネタですが、ふと見つけたので一応。
症状
IE7で、margin
が消える場合があります。
再現条件は、
padding
が0以外のブロック要素Aに囲まれている- Aの最初の子要素(空白・TAB・改行以外)がブロック要素Bである
- Bに
height
とmargin
が指定してある(たぶんhasLayout
がtrueになるならheight
以外でも該当)
こんな感じみたいです。
これらを満たすと、Bのmargin
が無視されます。
シンプルな再現HTMLは以下の通りです。
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
</head>
<body>
<div style="padding:1px;">
<div style="margin:100px; height:20px;">こんにちは</div>
<div style="margin:100px; height:20px;">ハロー</div>
</div>
</body>
</html>
これを開くと、IE7以外では「こんにちは」と「ハロー」の左端はそろいますが、IE7では「こんにちは」が左に寄ってしまいます。
回避方法
解決するには、Bを先頭子要素でなくせばいいので、適当なコメントを入れます。
<div style="padding:1px;">
<!– bugfix for IE7 –>
<div style="margin:60px; height:20px;">こんにちは</div>
<div style="margin:60px; height:20px;">ハロー</div>
</div>
やっぱりIE7は地雷ですね。
自動更新でIE8が入るようになったのがせめてもの救いです。