纯CSS实现图片水平垂直居中于DIV(图片未知宽高)
程序员文章站
2022-04-24 21:05:15
...
HTML
<div class=”demo”><a href=“#”><img src=“images/01.jpg” /></a></div>
CSS
/*For Firefox Chrome*/
.demo{border:1px #ddd solid;width:208px;height:148px;overflow:hidden;text- align:center;display:table;float:left;margin:50px;position:relative;}
.demo a{display:table-cell;vertical-align:middle;width:200px;height:140px;}
.demo a img{border:1px #ddd solid;margin:0 auto;max-width:200px;max-height:140px;}
/*For IE7*/
*+html .demo a{position:absolute;top:50%;width:100%;text-align:center;height:auto;}
*+html .demo a img{position:relative;top:-50%;left:-50%;}
/*For IE6*/
*html .demo a{position:absolute;top:51%;width:100%;text-align:center;height:auto;display:block;}
*html .demo a img{position:relative;top:-50%;left:-50%;width:expression(this.width>200?“200px”:“auto”);height:expression(thi s.height>140?“140px”:“auto”);}
转载于:https://www.jianshu.com/p/700eb649c25d
上一篇: 关于PHP实例化对像,在线等 急
下一篇: PHP session会话的安全性分析
推荐阅读
-
css实现div不定宽高垂直水平居中解决方案
-
div+css实现未知宽高元素垂直水平居中_html/css_WEB-ITnose
-
多张图片在同一个DIV中水平居中并且垂直居中 不忽悠 纯DIV+CSS实现 不用JS_html/css_WEB-ITnose
-
div+css实现未知宽高元素垂直水平居中_html/css_WEB-ITnose
-
详解纯css实现未知尺寸图片的垂直居中实例
-
纯CSS实现图片水平垂直居中于DIV(图片未知宽高)
-
css实现未知图片宽度图片在div中水平居中
-
纯css实现小图片在大容器内水平垂直居中resize
-
不定宽高div内图片垂直居中的css样式
-
css3中关于transform属性实现div不定宽高垂直水平居中的详细介绍