javascript - Designing a web with fancy view -


i beginner in working in field of web apps, , want build website. question want make menu here in left side https://roadtrippers.com/

so, how can ? please need know way.

thanks in advance.

if want fix element side of page, use position: absolute or position: fixed in css. (fixed remain in same place when scrolling; absolute scroll content):

.sidebar {     /* fix element relative window */     position: absolute;     /* fix left side of element left side of window        (distance of 0 between left of element , left of window) */     left: 0;     /* same top , bottom */     top: 0;     bottom: 0;     /* fix width */     width: 75px; } 

the rest of interactions can done javascript.


Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -