How to align an indented line in a span that wraps into multiple lines?

后端 未结 7 504
不知归路
不知归路 2021-02-04 23:34

Does anyone have an idea how to align the second line?

7条回答
  •  醉话见心
    2021-02-04 23:57

    display:block;
    

    then you've got a block element and the margin is added to all lines.

    While it's true that a span is semantically not a block element, there are cases where you don't have control of the pages DOM. This answer is inteded for those.

提交回复
热议问题