Hexo 文章图片居左的处理

hexo 默认的主题,landscape,文章内的图片是居中的,将它调整为默认居左。

操作步骤,第一步,下载主题到 hexo:

1
$ git clone --depth 1 https://github.com/hexojs/hexo-theme-landscape themes/landscape

编辑 ./themes/landscape/source/css/_partial/article.styl:

1
2
3
4
5
6
img, video
max-width: 100%
height: auto
display: block
margin: auto
margin-left: 0px ;<--增加