Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

CSS position Property

div.static {
  position: static;
  border: 3px solid #73AD21;
}

//Another example

div.relative {
  position: relative;
  left: 30px;
  border: 3px solid #73AD21;
}
 
PREVIOUS NEXT
Tagged: #CSS #position #Property
ADD COMMENT
Topic
Name
1+3 =