If you come across a website that functions perfectly on all browsers except for IE6, where the layout is extremely distorted but rebuilding the entire markup is not an option.
Furthermore, only CSS selectors supported by IE6 are being utilized on the site.
How would you go about addressing and resolving the issues specific to IE6 from start to finish? What steps would you take and how?
The first step would be to include special CSS for IE6.
<!--[if IE 6]> <link rel="stylesheet" type="text/css" href="ie6.css" />
The second step would be to install (if not already installed) IE tester or a VPC image+ MS Virtual PC.
Now, how would you assess and rectify all CSS-related issues without making extensive changes to the HTML code?
Keep in mind, the website operates smoothly on all other browsers including IE7, IE8, and Firefox.