How to line-break from css, without using
?

后端 未结 26 1485
攒了一身酷
攒了一身酷 2020-11-22 15:49

output:

hello
How are you

code:

hello
How are you

Ho

26条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-22 16:36

    I like very simple solutions, here is the one more

    hello How are you

    and css

    p {
     display: flex;
     flex-direction: column;
    }
    

提交回复
热议问题