Hi there, Just set up some styling for a table that I'm using in one of my sites, but when testing in IE, the page isn't coming up at all. Display is stopping just before the table, which leads me to think the problem might be with the CSS. The code is as follows: table.besthome { border: 2px solid #46719c; } td.dashed { border-bottom: 1px dashed black; font-size:12px; } td.besthead a{ font-size:24px; color:blue; } td.besthead{ padding-bottom:15px; padding-left:5px; } PHP: Can someone tell me if that's wrong for IE? Cheers!
There is nothing wrong with your css and that wouldn't affect it anyway. IE is the worst browser on the planet so having problems with it is expected and normal. First step is to make sure your page works in a modern browser, that is, anything but IE. If so, then you know your code is correct and it's only a matter of figuring out which, of the multitude of hacks to fix IE, is the one to use.
I second what has already been said, if you are still having problems, post the actual code for the table here so we can help you with it, there doesn't appear to be anything at all wrong with your CSS that would make the table not show up, so it is most likely a problem with the markup.
in my opinion, there's nothing wrong with your css, it's the browser that's giving you a problem..check your css or html or google for answers. i also experienced some browser issues, i just searched for some answers and edit my css or html file.hope you find solution to your problem..good luck!
basicly, css works at all browser, but sometimes, the browser has any trouble to execute or define our css codes, so we will need several tricks to fixed its
There is absolutely nothing wrong with his CSS, as mentioned before, please post your markup, if there is a problem, it will most likely be there.
I'm willing to bet your not referencing your classes correctly in the code. But, like everyone else said, we can't help you any further without seeing the HTML side of things.