CSS Comment faire quelque chose rester à l'écran

#id /*or*/ .class /*or, not reccomended*/ element{
  float: left;   /*or*/
  float: right;  /*or*/
  float: top;    /*or*/
  float: bottom; 
  
  width: 20%;
  /*best to use this for something like a div/container, 
  so everything inside it will float like a navbar or
  sidebar. */
}
dirt dinner