Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css how to make something stay on screen

#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. */
}
 
PREVIOUS NEXT
Tagged: #css #stay #screen
ADD COMMENT
Topic
Name
2+2 =