0
私は、アプリケーションのメニューを作成するためにイオングリッドを使用しています。 問題は、イメージのサイズが変更されず、列の中央に表示されないことです。ここで イオングリッド:画像を列の中心に合わせる
私のコードです:
<div class="row" style="height: 250px; overflow: visible; ">
<div class="welcome col col-67" style="overflow: visible; height: 230px;">
<img src="img/menu/Image1.png" ui-sref="welcome"/>
</div>
<div class="jargon col col-33" style="overflow: visible; height: 230px; ">
<img src="img/menu/Image2.png" ui-sref="jargon"/>
</div>
</div>
<div class="row" style="height: 250px; overflow: visible">
<div class="tools col col-50" style="overflow: visible; height: 230px; ">
<img src="img/menu/Image4.png" ui-sref="tools"/>
</div>
<div class="values col col-50" style="overflow: visible; height: 230px;">
<img src="img/menu/Image3.png" ui-sref="values"/>
</div>
</div>
ありがとうございました。