regarding browser compatibility.
-
Hi all, Am beginner to ASP.net I have created web page and trying to run it on different browsers(ie,mozilla). but it shows different text formats(bold,Size) in different browser.can u pls tell me what to do to display same page format in all browsers. with regards, Shivakumar Kore
-
Hi all, Am beginner to ASP.net I have created web page and trying to run it on different browsers(ie,mozilla). but it shows different text formats(bold,Size) in different browser.can u pls tell me what to do to display same page format in all browsers. with regards, Shivakumar Kore
-
Hi all, Am beginner to ASP.net I have created web page and trying to run it on different browsers(ie,mozilla). but it shows different text formats(bold,Size) in different browser.can u pls tell me what to do to display same page format in all browsers. with regards, Shivakumar Kore
Use W3C standard CSS to control the look and feel of the page. Make everything fluid where possible. Use percentages for font sizes and widths/heights of elements. 'Fixing' to many elements with fixed values can cause a lot of problems. Remember NOT all browsers will behave the same for everything - I'm afraid SOME elements won't. For the ones that don't you'll have to do a little research. For example to change the colour of a horizontal rule correctly you would have <hr style="color:#ff0000"/> - works fine in IE browsers but not in FF - the fix is <hr style="color:#ff0000;border:0px;height:2px;background-color:#ff0000"/> - note we have to add the border, height and background-color attributes - still correct and works in all browsers. All this comes with a little a research and experience. I would just start off by researching each problem element as it comes along specifically and as you need. Not the whole lot.