How make a slider always visible whenever I scroll down?

how make a slider always visible whenever I scroll down ?

I have a Slider on top of my page, below of my slider i have a lot of subplot.

I need my slider always visible whenever I scroll down to see more subplots. How can i do it ?
My layout code is :

self.app.layout = html.Div([
dcc.Slider(
id=‘slider-position’,
min=1, max=48000, value=2000, step=1000,
marks={1: ‘1’,10000:‘10000’,20000:‘20000’,30000:‘30000’, 48000: ‘48000’}
),
dcc.Graph(id=‘basic-interactions’, figure=fig),
html.Div(className=‘row’, children=[
html.Div([html.Pre(id=‘click-data’, style=styles[‘pre’]),],
className=‘three columns’)
])
])