I have a problem on my site http://urltube.com with loading time for rounded corners of my tables.Someone have an ideea to improve loading time ? Thanks.
Hmm. You could copy the code on my site: http://www.publisherdatabase.com/ It has curved corners, and I don't use tables or images to do it. It's just div boxes with simple CSS attached: -moz-border-radius: 15px; border: 2px solid #4f7d31; border-radius: 15px; Code (markup): The catch is that using that CSS is fairly bleeding edge. Hmm... well, not really. Most browsers handle it fine. But IE doesn't. IE just shows regular square boxes with regular pointy corners. -Tony
Wow, that's really bleeding edge. We're talking CSS3 stuff here. What browsers support CSS3 (besides FireFox v1.5), do you know?
I was under the impression that Mozilla, Firefox, Safari, and Konqueror all supported it. Hmm. No, actually, I just checked, and while they all support it, they have custom names for it. So good working CSS would be: -khtml-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; border: 2px solid #4f7d31; Code (markup): Thanks for the question. I'm going to update my own CSS to reflect that. -Tony