UBB.Dev
Posted By: Slawek_L How covert 6.2 css to 6.1 ? - 01/29/2003 5:04 PM
In have this style in the list, but I seemed that it's not work correctly. how convert this style to version 6.1 ?
Posted By: AllenAyres Re: How covert 6.2 css to 6.1 ? - 01/30/2003 8:18 AM
6.2 should be backwards compatible to 6.1. where are you seeing the problems?
Posted By: omegatron Re: How covert 6.2 css to 6.1 ? - 01/30/2003 1:23 PM
Likewise I agree with Allen you should not be seeing errors due to CSS.

There are a few new classes defined but they would not be called for in 6.1 but would not produce errors. The main difference between the CSS files in Threads is compliance from CSS 1 to CSS 2. Big change was you should see something like this in a 6.1 stylesheet

body {
background: #80e4ff;
}

That would pass a CSS version 1 test

In 6.2 which validates CSS version 2 you see this

body {
color: #000000;
background: #80e4ff;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9pt;
}

All your doing is defining every variable and not leaving anything to guess. If anything you are leaving less room for error.
© UBB.Developers