如何使图片在div中居中
程序员文章站
2022-04-22 12:29:24
...
第一种方法:
<p class="title"> <p class="flag"></p> <p class="content"> <img src="img_p1_title.png"> </p> </p>
.title { width: 100%; font-size: 0; height: 10%; } .title .content img { width: 35%; } /*--主要的--*/.content{ display: inline-block; vertical-align: middle; } .flag{ display: inline-block; vertical-align: middle; height: 100%; width: 0; }
第二种方法:
<p class="title"> <img src="img_p1_title.png"> </p>
.title { display: flex;
justify-content: center;
align-items: center; }
.title img {
width: 35%;
}
//该方法有些旧系统不支持
第三种方法:
<p class="title"> <span>第三种方法</span> </p>
.title { height: 15%; font-size: 18px; position: relative; } .title span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
第四种方法:
<p class="title"> <span>第四种方法</span> </p>
.title { width: 200px; height: 200px; vertical-align: middle; display: table-cell; text-align: center; }
以上就是如何使图片在div中居中的详细内容,更多请关注其它相关文章!
推荐阅读
-
Jsp中如何让图片在div中居中
-
css中absolute设置问题和如何让div居中
-
Jsp中如何让图片在div中居中
-
如何实现div 图片在DIV内水平居中
-
初学HTML/CSS:图片如何在DIV中的垂直居中,文字与DIV中的间距如何消除_html/css_WEB-ITnose
-
初学HTML/CSS:图片如何在DIV中的垂直居中,文字与DIV中的间距如何消除_html/css_WEB-ITnose
-
Vue项目中使用Html+Css使div在页面中居中显示(水平+垂直)
-
css如何实现span在div中水平居中_html/css_WEB-ITnose
-
Html?面中 如何 使Div一直在?面的下面_html/css_WEB-ITnose
-
在网页中如何实现下面的翻页导航效果?(有图有真相,图片在我下面的楼层中)_html/css_WEB-ITnose