[css]img垂直居中的方法

原文地址:http://www.tantengvip.com/2011/10/css_img/

原文作者在研究wordpress中无意发现的官方写法

/* Alignment */
.alignleft {
 display: inline;
 float: left;
}
.alignright {
 display: inline;
 float: right;
}
.aligncenter {
 clear: both;
 display: block;
 margin:auto;
}

经过测试,非常好用,不过我是初学者,这个方法会不会导致别的问题,和为什么text-align:centre对img居中无效,等以后有时间再总结放上来。

原文地址:https://www.cnblogs.com/monozxy/p/4830403.html