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

hidden

      जब overflow property की value hidden define की जाती है तो जो content border के बाहर overflow हो रहा है वह hide हो जाता है। सिर्फ element की width और height के हिसाब से content दिखाई देता है।

 

hidden

      When the value of overflow property is defined as hidden then the content which is overflowing outside the border gets hidden. Content is visible only according to the width and height of the element.

example:

 

<style>

div

{   

width:50px;   

height:50px;   

border:1px solid blue;   

overflow:hidden;

}

</style>

 

error: Content is protected !!