|
All Divs Position RelativeOK here it is. |
Offline |
Re: All Divs Position RelativeSometimes it is helpful and sometimes it isn't. Honestly I try to avoid position in my code. However with that said I do use position relative when it comes to my nav but outside of that I rarely use it. I find when you have to use positions then you have more problems with them then they are worth it. |
|
Offline |
|
Re: All Divs Position RelativeBy default all browsers interpret each block level page element to have position: static, which basically means it follows the the natural flow of the page. So by declaring position:relative on all DIV you are starting to force page behavior. This is not to say that it won't work its just that you may find yourself having to do more to achieve the same result. littleBird, big mouth! |
Offline |