@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

CSSで一行目を字下げしたり二行目以降を字下げしたり

See the Pen NNmbyQ by peccu (@peccu) on CodePen.

/* 一行目を字下げする */
.text-indent {
  text-indent: 1em;
}
/* 二行目以降を字下げする */
.hanging-indent {
  padding-left: 1em;
  text-indent: -1em;
}