Coming Back - Web Design
Out of context: Reply #8
- Started
- Last post
- 10 Responses
- Jaline0
1: I am using * to reset everything because it makes it more likely that your code will be consistent across various browsers. Firefox, for example, seems to put extra padding or margin around certain divs, and I had to resort to using negative numbers in my CSS. This doesn't make the site look consistent in different browsers, of course, so I started using *
2: I still use absolute positioning when I need to, such as if I want the navigation of a page to remain in the same spot while the rest of the content scrolls. For this to work, you would also have to add:
position:fixed !important;
3: Search Google. You can find whatever specific fix you are looking for that way. Make sure to view the web site in as many browsers as you can and then look around for solutions to any problems you may see right away.