shenxianpeng / blog

Xianpeng Shen's Blog
http://shenxianpeng.github.io
GNU General Public License v3.0
1 stars 0 forks source link

Hexo img display on left #6

Closed shenxianpeng closed 5 years ago

shenxianpeng commented 5 years ago

Hexo default theme, picture will display on center, I check the file: blog\themes\landscape\source\css_partial\article.styl

  img, video
    max-width: 100%
    height: auto
    display: block
    margin: auto

change margin to left will let img display on left

  img, video
    max-width: 100%
    height: auto
    display: block
    margin: left
shenxianpeng commented 5 years ago

now blog img will display on left, closing.