前提・実現したいこと
現在トップページにスライダーを設置しまして、その下にロゴを配置しているのですが
ブラウザによって空間が空いてしまって``````ここに言語を入力
ここに言語を入力
表示が違うので統一したいと思っています。
ファイアフォックスの空間に統一したいです。
画像鵜URLを一番下の補足情報にに添付いたします。
cssの記述や使用しているcssハックに問題があるかご指摘お願いいたします。
該当のソースコード
/*タブレット向け*/ @media only screen and (min-width: 481px) { #francecolle { background: #ffffff url(../image/logo.png) no-repeat center; height: 178px; padding:0 0 200px 0; margin:300px 0 0 0; } } /*PC向け クロム*/ @media screen and (-webkit-min-device-pixel-ratio:0) { #francecolle { background: #ffffff url(../image/logo.png) no-repeat center; height: 178px; padding:0 0 350px 0; margin:350px 0 0 0; } } /*PC向け IE*/ @media all and (-ms-high-contrast:none) { @media only screen and (min-width: 769px) { *::-ms-backdrop, #francecolle { background: #ffffff url(../image/logo.png) no-repeat center; height: 178px; padding:0 0 350px 0; margin:100px 0 0 0; } } } /*PC向け エッジ*/ @media only screen and (min-width: 769px) { #francecolle { background: #ffffff url(../image/logo.png) no-repeat center; height: 178px; padding:0 0 350px 0; margin:650px 0 0 0; } } /*PC向け ファイアフォックス*/ @-moz-document url-prefix(){ @media only screen and (min-width: 769px) { #francecolle { background: #ffffff url(../image/logo.png) no-repeat center; height: 178px; padding:0 0 350px 0; margin:650px 0 0 0; } } }
試したこと
cssハックを使用し、各ブラウザに当てはめていったのですが、
firefoxとedgeには適用できまして、
IEとchromeがを操作しようとするとcss効かなくなってしまいました.
回答2件
あなたの回答
tips
プレビュー