Important Notice:

Course Content
Float Property
0/1
Z-Index
0/1
CSS object-fit Property
0/1
CSS Visibility Property
0/1
CSS (Chapter 4) M2-R5.1
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>

 

error: Content is protected !!