I’m trying to convert my old html4 layout to a new html5 layout.
Is it wise to make a 3 column layout with the new css3 way or can i better use the old way ?
Roelof
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Right now only Mozilla and Webkit (Chrome, Safari) browsers support
multi-columnlayouts.IE, even up to 9, does not support this: http://msdn.microsoft.com/en-us/library/cc351024%28VS.85%29.aspx#multicolumn
If you need to support IE, then you should consider:
divs as columns ormulti-columnand usingconditional commentsto send different code to IE.2 is a lot of work for not a lot of gain right now, in my opinion.