About Lesson
scroll
जब हम overflow property की value scroll define करते है तब content container size मे ही दिखाई देता है और बाकी content को भी user देख सकता है। यह value container मे horizontal और vertical scroll को add कर देती है।
scroll
When we define the value scroll of the overflow property, then the content is visible only in the container size and the user can also see the rest of the content. It adds horizontal and vertical scroll to the value container.
example:
<style> p { width:50px; height:50px; border:1px solid blue; padding: 5px; overflow:scroll; } </style> |