About Lesson
Inline Elements
Inline Elements new line से शुरू नहीं होता है और जरूरत के हिसाब से space लेता है।
Example:-
- <span>
- <a>
- <img>
Display property मे हम अलग अलग values को use करते है जैसे की
- none
- inline
- block
- inline-block
- list-item
Display: none;
यदि आप किसी Element को Show नही कराना चाहते हैं तो उसे none Value द्वारा Hide कर सकते हैं। none Value द्वारा Element Show नही होता हैं और उसकी जगह पर अगला Element Show होने लगता हैं।
Inline Elements
Inline elements do not start on a new line and take up as much space as needed.
Example:-
- <span>
- <a>
- <img>
In display property we use different values like
- none
- inline
- block
- inline-block
- list-item
Display: none;
If you do not want to show any element then you can hide it with none value. The element is not shown by none value and the next element starts showing in its place.