我需要創建一個可點擊的div與圖像(可變大小,但小於div)在div中水平和真實地居中。可點擊的div與圖像垂直和水平居中
我做了DIV可點擊與
#image-box a { display: block; height: 100%; width: 100%; }
,但似乎無法垂直居中的圖像。
我需要創建一個可點擊的div與圖像(可變大小,但小於div)在div中水平和真實地居中。可點擊的div與圖像垂直和水平居中
我做了DIV可點擊與
#image-box a { display: block; height: 100%; width: 100%; }
,但似乎無法垂直居中的圖像。
試試你的一個元素的這種調節寬度和高度在評論中解釋說:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Centered Clickable Image</title>
<style type="text/css" media="screen">
#image-box {
position:absolute;
top:0; bottom:0; left:0; right:0;
margin:auto;
border: 1px solid #999;
text-align: center;
}
#image-box a {display:block; position:absolute;
top:0; bottom:0; left:0; right:0;
margin:auto; text-align: center;
}
/* insert the same width and height of your-nice-img.png */
#image-box a {width:339px; height:472px; border: 2px solid red;}
</style>
</head>
<body>
<div id="image-box">
<a href="#">
<img src="your-nice-image.png" alt="image to center"/>
</a>
</div>
</body>
</html>
注:只需要視覺調試 邊框,您可以隨時刪除它們。
這裏的訣竅是你使用了一個絕對定位的div(#image-box
),它具有固定的寬度和高度。
如果在#image-box a
頂部和底部位置設置爲零規則margin:auto
提出#image-box a
元件中的中間位置(在垂直軸上),因爲它具有固定的高度。
如果可以的話還是喜歡去解決它使用jQuery,試試這個:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Centered Image</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<div id="image-box">
<a href="#">
<img src="canning.png" alt="image to center"/>
</a>
</div>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$(window).resize(function(){
$('#image-box a').css({
position:'absolute',
left: ($(window).width() - $('#image-box a img').outerWidth())/2,
top: ($(window).height() - $('#image-box a img').outerHeight())/2
});
});
// first run
$(window).resize();
});
</script>
</body>
</html>
有趣的建議,但我不知道事先的圖像的高度和寬度。 – Neil
@Neil使用jquery更新:支持動態圖像大小 – microspino
非常好 - 感謝這個解決方案! – Neil
你是否已經嘗試#圖像框IMG {保證金:汽車;文本對齊:中心}? – microspino