Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

relative and absolute divs

.relative {
  position: relative;
  width: 600px;
  height: 400px;
}
.absolute {
  position: absolute;
  top: 120px;
  right: 0;
  width: 300px;
  height: 200px;
}
Source by learnlayout.com #
 
PREVIOUS NEXT
Tagged: #relative #absolute #divs
ADD COMMENT
Topic
Name
6+8 =