I have a <textarea> that appears at different heights with all the browsers.
Is there a css hack for Chrome?
I have a <textarea> that appears at different heights with all the browsers. Is
Share
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.
Chrome uses the webkit rendering engine, which is among the better rendering engines. It is about as compliant with HTML5 and CSS standards as you’ll see in the wild today.
Your best bet is to write code focused on the standards-compliant browsers (Chrome, Safari, Opera, and Firefox) If you’re not doing any super-crazy HTML5, you’ll find all these browsers act pretty much the same. As a bonus, mobile browsers are generally based on webkit or opera, so you’ll also have the mobile market covered.
Even Internet Explorer (by the time you get to version 8) plays along pretty well with most of the standards (again, assuming you’re not doing HTML5 form elements or the video tag or something.) The problem is the older versions of IE, particularly IE6.
Write your CSS for standards-compliant browsers first. Then use a conditional comment to add a special exceptions stylesheet read only by IE6 and earlier. Put the CSS adjustments you need there to take care of IE6.
Best of luck to you….