在 css 中上移下边框

5 css border

如何使用 css 将底部边距向上推约 5 个像素?

是关于我想要实现的目标的示例:

推高边界

Pra*_*man 6

尽管您可以使用 using line-height,但它可能会搞砸下一行。所以我建议这样做:

h1 {
  font-size: 24px;
  border-bottom: 2px solid #FF6A00;
  /* proposing line height + padding */
  line-height: 20px;
  margin-bottom: 5px;
}
Run Code Online (Sandbox Code Playgroud)