2017-01-31 19 views
0

を持っているので、私はFirefoxブラウザでこのようなものを作ってきました。 heightプロパティは等しくない:が同じ高さ

enter image description here

高さの1ピクセルの違いがあります。 解決策はありますか?ライブページを見たい方はmy site here

私の英語を残してください。

+1

更新試した? – Prasad

+1

マークアップとCSSを投稿すると、サイトや外部リソースへのリンクが消えることがあります。この質問を行うと、役に立たなくなります – LGSon

+0

この問題は一般的です。 http://stackoverflow.com/questions/7229568/input-height-differences-in -firefox-and-chrome – amansinghgusain

答えて

0

最も簡単な解決策は、各divの上の個々の境界線を削除し、ちょうどあなたが必要なものを得るためにコンテナを使用することです

https://jsfiddle.net/uqdmvonv/

例:あなたが持っているものと

div.pp-footer1-container1 div.pp-footer1-fill4{ 
    display: table; 
    border: 2px solid white; 
    border-radius: 8px; 
} 
div.pp-footer1-container1 div.pp-footer1-fill4{ 
    border: none; 
    border-right: 2px solid white; // This is for that middle bar 
} 
div.pp-footer1-container1 div.pp-footer1-fill4 a:hover{ 
    text-decoration: none; 
    background-color: white; 
    color: #ff0000; 
    transition: all .5s ease; 
} 
関連する問題