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

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

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

7条回答
  •  孤街浪徒
    2021-02-05 00:12

    You want multiple lines of text indented on the left. Try the following:

    CSS:

    div.info {
        margin-left: 10px;
    }
    
    span.info {
        color: #b1b1b1;
        font-size: 11px;
        font-style: italic;
        font-weight:bold;
    }
    

    HTML:

    blah blah
    blah blah

提交回复
热议问题