Answers for "how to make an element position fixed"

CSS
1

make a fixed page css

body {
  overflow-x: hidden;
}

  /* MORE OPTIONS : - 
    overflow-x: auto;
    overflow-x: scroll;
    overflow-x: visible;
  */
Posted by: Guest on March-15-2021
0

how to position fixed inside a div

//Do not forget the absolute position!

.parentDiv{
position: relative;
}

.insideParentDiv{
position: absolute;
}
Posted by: Guest on November-09-2020

Code answers related to "how to make an element position fixed"

Browse Popular Code Answers by Language