Markdown (HTML) 砌体 (瀑布) 布局

直接上我的 markdown 源码就好了 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 <style> .blog_photo_album_grid { -webkit-column-count: 3; -webkit-column-gap: 10px; -webkit-column-fill: auto; -moz-column-count: 3; -moz-column-gap: 10px; -moz-column-fill: auto; column-count: 3; column-gap: 10px; column-fill: auto; } .blog_photo_album_block { background-color: none; display: block; padding: 10px; word-wrap: break-word; margin-bottom: 10px; -webkit-column-break-inside: avoid; -moz-column-break-inside: avoid; column-break-inside: avoid; border-style: solid; border-width: 1px; border-radius: 5px; border-color: #f0f0f0; box-shadow: 3px 3px 3px #f0f0f0; } </style> <div class="blog_photo_album_grid"> <div class="blog_photo_album_block"><img src="/pictures/photo_album/eat/doge....

二月 15, 2023 · 1 分钟 · 154 字 · HCY

Hexo next 开启 fancybox 查看图片大图

修改主题配置文件 开启 fancybox开关即可 1 2 3 # FancyBox is a tool that offers a nice and elegant way to add zooming functionality for images. # For more information: https://fancyapps.com/fancybox fancybox: true

二月 15, 2023 · 1 分钟 · 31 字 · HCY

Vim Diff

VIM(NEOVIM) 比较不同 1 vim -d file_1 file_2

十一月 7, 2022 · 1 分钟 · 7 字 · HCY

Hexo 文档分类 图片存储

建立分类 ...

十月 23, 2022 · 1 分钟 · 174 字 · HCY

Hexo 基本美化

首先是顶部背景,下面是原背景 ...

十月 23, 2022 · 1 分钟 · 30 字 · HCY