日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

垂直居中及容器内图片垂直居中的CSS解决方法

發(fā)布時間:2023/12/6 68 豆豆
生活随笔 收集整理的這篇文章主要介紹了 垂直居中及容器内图片垂直居中的CSS解决方法 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

方法一:

<style type="text/css">
<!--
* {margin:0;padding:0}
div {
? width:500px;
? height:500px;
? border:1px solid #666;
? overflow:hidden;
? position:relative;
? display:table-cell;
? text-align:center;
? vertical-align:middle
}
div p {
? position:static;
? +position:absolute;
? top:50%
? }
img {
? position:static;
? +position:relative;
? top:-50%;left:-50%;
? }
-->
</style>
<div><p><img src="http://www.google.com/intl/en/images/logo.gif" /></p></div>

方法二:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>div里面圖片垂直居中的幾個例子</title>
<style type="text/css">
<!--
body {
? margin:0;padding:0
}
div {
? width:500px;
? height:500px;
? line-height:500px;
? border:1px solid #666;
? overflow:hidden;
? position:relative;
? text-align:center;
}
div p {
? position:static;
? +position:absolute;
? top:50%
}
img {
? position:static;
? +position:relative;
? top:-50%;left:-50%;
? vertical-align:middle
}
p:after {
? content:".";font-size:1px;
? visibility:hidden
}
-->
</style>
</head>
<body>
<div><p><img src="http://www.google.com/intl/en/images/logo.gif" /></p></div>
</body>
</html>

方法三:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>div里面圖片垂直居中的幾個例子</title>
<style type="text/css">
<!--
* {margin:0;padding:0}
div {
? width:500px;
? height:500px;
? line-height:500px;
? border:1px solid #666;
? overflow:hidden;
? position:relative;
? text-align:center;
}
div p {
? position:static;
? +position:absolute;
? top:50%;
? vertical-align:middle
}
img {
? position:static;
? +position:relative;
? top:-50%;left:-50%;
? vertical-align:middle
}
-->
</style>
</head>
<body>
<div><p><img src="http://www.google.com/intl/en/images/logo.gif" /></p></div>
</body>
</html>

方法四(針對背景圖片居中):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>div里面圖片垂直居中的幾個例子</title>
<style type="text/css">
<!--
* {margin:0;padding:0;}
div {
? width:500px;border:1px solid #666;
? height:500px;
? background:url("http://www.google.com/intl/en/images/logo.gif") center no-repeat
}
-->
</style>
</head>
<body>
<div></div>
</body>
</html>


?

總結(jié)

以上是生活随笔為你收集整理的垂直居中及容器内图片垂直居中的CSS解决方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。