About Lesson
Display: Block;
Block Element हमेशा एक नई line से start होता है और full width लेता है। इसके द्वारा आप Inline Elements को Block-level Elements की तरह Display करा सकते है।
Display: Block;
Block element always starts on a new line and takes full width. Through this you can display Inline Elements like Block-level Elements.
Example:
<html> <head> <style> span { display: block; } </style> </head> <body> <span>Block Element हमेशा एक नई line से start होता है और full width लेता है। इसके द्वारा आप</span> <span>Inline Elements को Block-level Elements की तरह Display करा सकते है।</span> </body> </html> |