|
|
|
|
|
by paul9290
5120 days ago
|
|
If you are a good front developer then fixing ie7 issues shouldn't be an issue or take you long to fix! For html5 use the html5 boiler plate and ensure your code validates. Also do not use floats to position everything, only elements that need to flow with the contents of the document. Use position absolute for elements that are static and of course in the block that holds said elements add position relative. Using too many floats is bound to make you hating ie7 even more. |
|