hexo NexT 如何设置图片居中

此方法无效:

<div align=center>
    <img src="https://img2018.cnblogs.com/blog/1629545/201905/1629545-20190525105700146-1378074619.jpg" style="zoom:50%"/>
</div>

此方法有效:

<img src="https://img2018.cnblogs.com/blog/1629545/201905/1629545-20190525105700146-1378074619.jpg" style="zoom:50%;margin:auto;"/>

也就是在style中添加margin:auto;

猜你喜欢

转载自www.cnblogs.com/df888/p/12694155.html