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: Inline;

        यह Value Inline Elements की Default Value होती हैं। inline Value द्वारा Elements को Inline Display कराया जाता हैं। Block-level Elements को भी इस Value द्वारा Inline Display करा सकते हैं।

 

Display: Inline;

        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.

 

Example:

<html>

<head>

<style>

li {

  display: inline;

}

</style>

</head>

<body>

<ul>

  <li><a href=”#” >HTML</a></li>

  <li><a href=”#”>CSS</a></li>

  <li><a href=”#”>JavaScript</a></li>

</ul>

</body>

</html>

 

 

 

error: Content is protected !!