0
What are Inline and Block elements?
I am unable to understand Inline and block elements in Html language.please give me a satisfactory solution
2 ответов
+ 3
Inline element will not start display with a new line, but block element will.
For example, <h1>Welcome</h1> will start with a new line, which is a block element, but <span>Hello</span> will connect with previous contents.
0
Thanks for helping me out.