Web Browser Differences with CSS

Not all web browsers will render your web page exactly the same. The issue can be addressed in your CSS code. Internet Explorer recognizes the "#" prefix, and IE6 and older recognizes the "_" prefix. In addition, each browser will use the last declaration of CSS code that it recognizes. Consider the following code.


top: 0px;
#top: 4px;
_top: 8px;