Is there a way to keep the scrollbar always visible in my "article" DIV? I attempted the code below, but it only shows up when I start scrolling down. This issue is specific to Safari's latest version. Any suggestions would be appreciated. Thank you!
.article {
float: right;
text-align:justify;
width: 400px;
height: 450px;
padding: 60px 82px 49px 82px;
position: relative;
z-index: 15;
margin-top: 90px;
background: #fff;
/* max-width: 25%; */
overflow:scroll;
overflow-y: scroll;
}