What does this type of WIDTH declaration means? (See Source HERE)
#content {
float: left;
min-height: 1px;
width: 71.1702%;
}
What does this type of WIDTH declaration means? (See Source HERE)
#content {
float: left;
min-height: 1px;
width: 71.1702%;
}
It is saying that the div #content will be 71.1702% of it's parent's width.
example:
If parent's width is 100% of screen, then #content will be 71.1702% of screen.
If parent's width is 400px, then #content will be 71.1702% of 400px.