79702103

Date: 2025-07-15 13:06:38
Score: 3
Natty:
Report link

A scroll bar is only visible if a content is bigger than its scroll-able container.

E.g. here, the content's height is 800px but its container is only 400px:
(Please provide more context if this doesn't answer your question)

.container{
  overflow-y: scroll;
  
  width: 200px;
  height: 400px; /* Half of its content */
}
<div class="container">
  <img src="https://placehold.co/200x800">
</div>

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Cyberflixt