How to line-break from css, without using
?

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

output:

hello
How are you

code:

hello
How are you

Ho

26条回答
  •  长情又很酷
    2020-11-22 16:39

    The code can be

    helloHow are you

    CSS would be

    .text-class {
         display: flex;
         justify-content: flex-start;
         flex-direction: column;
         align-items: center;
     }
    

提交回复
热议问题