What is inline section in html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is inline section in html

14th Mar 2017, 6:56 PM
nikhil panwar
2 Answers
0
css has three property internal, external ,inline . inline is used for individual tag or we say single line tag.
14th Mar 2017, 7:09 PM
Aakash
Aakash - avatar
0
inline, such as span tags (most common) are elements on the page that layout "inline" with each other, so depending on sizing, you can fit as many inline tags in a single line you want. This is opposed to block tags, which without additional code only one is permitted per line or "block" of the page. Inline elements may be formatted by nesting in a block element, the other way around is not possible. for better markup i would never use an inline element without it being nested in a block parent
15th Mar 2017, 3:20 AM
William La Flamme
William La Flamme - avatar