How to position horizontal scroll bar at center of DIV

前端 未结 6 810
温柔的废话
温柔的废话 2020-12-18 01:51

I was trying to position horizontal scroll bar at the center of that div. I tired with window.scrollTo() but this works for page scroll and not for div scroll.



        
6条回答
  •  天涯浪人
    2020-12-18 02:45

    $(document).ready(function(){
        var scrollPosition = ($('#viewContainer').width()/2 + $('.abc').width())/2;
        $('.abc').scrollLeft(scrollPosition);
    
    });
    

提交回复
热议问题