+ 1
What is the meaning of the word INLINE in html?
Getting this too often in quizzes, challenges.
1 ответ
+ 6
{ inline } means the DOM element will sit next to each other when there's sufficient space in the viewport.
On the other hand, { block } element will always start at a new line as if there's a <br> in front of it.
When in doubt, give it a try in Code Playground and you'll be able to find the answer. 😉