css 文字首行缩进2两个字符

可以通过 CSS 的 text-indent 属性来实现文字首行缩进,悬挂缩进则需要使用 text-indent 和 text-align 属性的组合。下面是实现代码:

p {
  text-indent: 2em; /* 首行缩进2个字符 */
  text-align: justify; /* 两端对齐 */
  text-justify: newspaper; /* 悬挂缩进 */
}

注:使用 text-justify 属性时,需要注意浏览器的兼容性,有些浏览器可能不支持该属性。

你可能感兴趣的:(css,前端,html)