Closed qarlosalberto closed 2 months ago
The component has a scrollMax property: https://vscode-elements.github.io/components/scrollable/api/#Properties_scrollMax You can combine it with the scrollPos:
const sc = document.querySelector('#my-scrollable');
sc.scrollPos = sc.scrollMax;
great! thank you very much
How can I move a Scrollable element to the max bottom?