Span display:block | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Span display:block

On the tutorial there are breaks in between each line. But when I run it there are none. <span>line something whatever</span> <span>second line blah blah blah</span> And the css code Span{ display : block; } Can someone tell me why?

19th Sep 2018, 2:31 PM
Shane
Shane  - avatar
1 Answer
+ 5
That means the text inside the span tag will be behave like a block level Element. After the span tag, text automatically will be go to the next line, in case if you not set the width.
19th Sep 2018, 4:21 PM
Bug Slayer