About Lesson
auto
auto value scroll value से similar ही है। लेकिन auto value तभी scroll को add करती है जब इसकी आवश्यकता हो।
auto
auto value is similar to scroll value. But auto value adds scroll only when it is needed.
Example:
<style> div { background-color: #eee; width: 200px; height: 50px; border: 1px solid black; overflow: auto; } </style> |