最简单的css排版代码

Author Avatar
zzz1220 11月 21, 2022
  • 在其它设备中阅读本文章
👉👉本文共69字📘 读完共需1分钟⌚

RT, 几行简单的css 代码让你的排版看起来not bad, ps(这篇post 是用 github Codespaces 提交的)。


    html {
      max-width: 70ch;
      padding: 3em 1em;
      margin: auto;
      line-height: 1.75;
      font-size: 1.25em;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin: 3em 0 1em;
    }

    p,
    ul,
    ol {
      margin-bottom: 2em;
      color: #1d1d1d;
      font-family: sans-serif;
    }