IEでmarginのautoが効かない時の対応方法
事象 : IEでmarginのautoで設定した右寄せが効かない
ChromeとEdgeとFirefoxは右寄せになるのにEdgeだけ左寄せになる。
<!DOCTYPE html>
<html>
<head>
<title>marginのautoが効かない</title>
<style type="text/css">
.oya_div {
display: flex;
flex-direction: column;
border-style: solid;
padding: 2%;
}
.rigit {
margin: 0 0 0 auto;
}
</style>
</head>
<body>
<form style="width: 30%">
<div class="oya_div">
<div class="rigit">
<input type="button" value="ボタン">
</div>
</div>
</form>
</body>
</html>
原因 : IEでは親のflex-direction: column;
に邪魔されてmargin: 0 0 0 auto;
が効いていない
oya_div
ではdisplay: flex;
とflex-direction: column;
を指定している。
開発ツールでflex-direction: column;
を外すとmargin: 0 0 0 auto;
が効いて右寄せになる・・・。
対応 : 寄せの設定をtext-align
でする。
IEでmargin
のauto
が効かない事象はよくあって理由もいろいろだが、text-align
を試したらいけた。
margin: 0 0 0 auto;
と合わせて使ってもいいがtext-align: right;
だけで右寄せになるので、margin: 0 0 0 auto;
は削除した。
<!--さっきと同じなので省略-->
.rigit {
text-align: right;
}
</style>
<!--さっきと同じなので省略-->
ほかの原因
- mainタグの問題
-
display:flex;
とposition: fixed;
の問題 - その他
Author And Source
この問題について(IEでmarginのautoが効かない時の対応方法), 我々は、より多くの情報をここで見つけました https://qiita.com/ponsuke0531/items/dcf9dfb662e751a7ed0d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .