How to position horizontal scroll bar at center of DIV

前端 未结 6 820
温柔的废话
温柔的废话 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:33

    This is an old question, but you can now use scrollIntoView for this, depending on the browsers that must be supported:

    $(document).ready(function(){ document.getElementById('center').scrollIntoView({ inline: 'center' }); });

    Updated fiddle

提交回复
热议问题