
CeaRO Corporation
Section 7 - CSS 3
Yes, it is coming. The third version of CSS.
It has some nice features to graphically enhance the 'look and feel' in a much easier way than it used to be done with all kind of repeating background images.
This box with text is supposed to have a shadow and rounded corners, thanks to a few lines of CSS3 code. And Firefox 3+ is supposed to be able to show it. But has it? And the 'few lines of CSS3 code' you also need to take with a pinch of salt, thanks to having to cater for differences between browsers and their rendering 'engines'. Look at this code: 'box-shadow: -10px -10px 0px #000; -o-box-shadow: -10px -10px 0px #000; -icab-box-shadow: -10px -10px 0px #000; -khtml-box-shadow: -10px -10px 0px #000; -moz-box-shadow: -10px -10px 0px #000; -webkit-box-shadow: -10px -10px 0px #000; border-radius: 5px; -o-border-radius: 5px; -icab-border-radius: 5px; -khtml-border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px;'