About Lesson
visible
जब overflow property की value visible define की जाती है तो वह content जो overflow हो रहा है visible रहता है। इस value से content element की border से बाहर overflow होता हुआ show होता है।
visible
When the value of overflow property is defined as visible then the content which is overflowing remains visible. This value shows the content overflowing beyond the border of the element.
Example
<style> div { width:50px; height:50px; border:1px solid blue; overflow:visible; } </style> |