145px X 145pxのdivがあります。このダイビングの中にimgがあります。 imgのサイズは任意です(長辺が130px)。画像をdivの垂直方向の中央に配置したいと思います。私が試したすべてがほとんどのブラウザーで機能しますが、IE7では機能しません。 IE7で動作するものが必要です。
次のように、divの背景で画像を置き換えることができます。
<div style="background:url(myimage.jpg) no-repeat center center"></div>
ここにクロスブラウザソリューションがあります:
<div class="img-container"><img src="picture.png" class="cropped"/></div>
div.img-container {
width: 390px;
height: 211px;
position: relative;
margin-left: auto;
margin-right: auto;
overflow: hidden;
}
img.cropped {
position: absolute;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
IE7については不明ですが、IE9およびその他の最新のブラウザーでは動作します。
.picturecontainer{
width:800px;
height:800px;
border:solid 1px;
display:table-cell;
vertical-align:middle;
}
.horizontalcenter{
display:block;
margin-left:auto;
margin-right:auto;
vertical-align:middle;
}
使用するには
<div class="picturecontainer"><img src="" class="horizontalcenter"/></div>
これにより、画像が死んだ中心に配置されます。
これまでに何を試したかはわかりませんが、画像がインライン要素として表示されている場合は、vertical-alignCSSプロパティが機能するはずです。
Vertical-alignに関する情報: http://www.w3schools.com/css/pr_pos_vertical-align.asp
すべての画像の高さを考慮する必要がある場合、それはJavaScriptを使用しないほとんどの場合唯一の方法です。
画像がインライン要素ではなく、高さが一定の画像に対応するだけでよい場合は、次のようにすることができます。
img {
margin-top: -50px; /* This number should be half the height of your image */
position: absolute;
top: 50%;
}
そうでなければ、さまざまな高さの画像に対応するために私が考えることができる唯一の方法は、CSSで同様のことを行うことですが、JSで負のマージンを画像の高さの半分に設定します。
line-height
プロパティを使用すると、問題が解決しました。
参照: div内の垂直配置画像
HTML:
<div class="img_thumb">
<a class="images_class" href="large.jpg" rel="images"><img src="http://www.minfo.pt/fotos/_cache/produtos/0/068.M.976010002__thumbnail_50_50_true_sharpen_1_1.JPG" title="img_title" alt="img_alt" /></a>
</div>
CSS:
.img_thumb {
float: left;
height: 120px;
margin-bottom: 5px;
margin-left: 9px;
position: relative;
width: 147px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 3px;
line-height:120px;
text-align:center;
}
.img_thumb img {
vertical-align: middle;
}
厄介なテーブルを使用せずにこれを行うための小さなjQueryコードを作成しました。
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js">
imagepos = function () {
$('img').each(function () {
imgheight = Math.round($(this).height() / 2);
imgwidth = Math.round($(this).width() / 2);
$(this).attr("style", "margin-top: -" + imgheight + "px; margin-left: -" + imgwidth + "px; opacity:1;");
});
}
$(window).load(imagepos);
</script>
そして、あなたは少しCSSも必要です:
div
{
position:relative;
}
img
{
display:block;
margin:auto;
max-width:100%;
position:absolute;
top:50%;
left:50%;
opacity:0;
}