Fotoramaの左右の矢印を上に合わせようとしています。私はクロム、ファイアフォックスなどでそれを行うことができましたが、IEのすべてのバージョンで垂直方向の中央に揃えます。私が知っていることはすべて試しました(JSに精通していません)が、それができないようです:(
私が編集した以下の CSS を含めました。
.fotorama__arr {
display: block;
position: absolute;
font-family: sans-serif;
width: 44px;
text-align: center;
z-index: 10;
color: white;
opacity:1;
-webkit-transition-property: opacity, margin;
-moz-transition-property: opacity, margin;
-o-transition-property: opacity, margin;
transition-property: opacity margin;
font-size: 30px;
top: 6px;
text-shadow: black 0 0 5px;
cursor: pointer;
font-style: normal!important;
-webkit-tap-highlight-color: rgba(255,255,255,0.15)
}
どうもありがとうジョー