CSS Tutorial - Display & Layout

Unlock Premium Features: AI explanations (Hinglish), Indian voice & Videos
Sign Up Free

๐Ÿ“ Display Property

๐ŸŒŸ Elements Ka Behavior:

๐Ÿ“ฆ Block = Full width (h1, p, div)
๐Ÿ“ Inline = Content width (span, a)
๐ŸŽฏ Inline-block = Best of both

๐Ÿ“Š Display Values

ValueBehavior
blockFull width, new line
inlineContent width, same line
inline-blockWidth set kar sakte, same line
noneHide element

๐Ÿค– AI Tutor Unlock Karo!

Apni language mein coding seekho - Hindi, Marathi, Gujarati aur 10+ Indian languages mein!

  • Hinglish mein explanations
  • Real-life examples
  • Beginner-friendly
Free Signup Karo

Example

div { display: inline-block; }
span { display: block; }