http://abc.com/abc.php?alias=Rashtreeya-Vidyalaya-College-of-Engineering-Mysore-Road-Bangalore&product=colleges
I have a page like this .this works very well in all browsers, but not in IE.
problem in IE is that : 1. If you go 开发者_JAVA技巧to "your ratings" tab in second section. the stars and input are not clickable only. 2. and the gap between tabs and tables are more in IE ..
tried to check in firebug also. the element has not margin or padding at bottom.
- the slideshow also does not work in IE
Well... Former internet explorer versions had a mistake in their box model: the w3c box model takes width without padding and border, and the IE model took it including them. I have examined the page in a a new IE8 in windows 7, and I've only noticed that the border of the tabs were not rounded and they were not connected to the box. The corner can be done with images.
Sorry.
You will have to create a different page design by detecting the browser.
<script type="text/javascript">
document.write(navigator.appCodeName);
</script>
As you can see, at CNET.com it is different when you switch browsers. Firefox and Chrome are both very similar, Internet Explorer is extremely simple.
精彩评论