Can css achieve this kind of text wrapping effect?

as shown in the figure:

how should css be written?

:

Sep.02,2021

if you say enter icon, then you can use befor. If you say p tag wraps, then set display:inline-block; to p, and set a div to set the width


does the outer layer set the width to wrap automatically? The


p tag comes with the display:block css attribute. You can change the display attribute of the second p tag or change the tag

title:


this is a test.


Yes, look at the code: jsrun


what do you mean? isn't that what it means to write normally?

Job: this is a test


< style >

p {
  width: 200px;
  word-break: break-all;
}

< / style >


what is the effect of this text wrapping effect?
is this what you want?

Job title, this is a test, this is a test
this is a test.

No one answered using the newline character < / br > ?

Menu