Take the following code and paste it into the editor in HTML mode...
Flip back to design view and it looks great. Then in design view add a
sub bullet to bullet A. It will be formatted with an "A" instead of a
"1" that the css style defines. But, if you switch back to HTML view and
then back to Design view the formatting is correct. Am I doing
something wrong or is this a known issue?
<html> <head> <title></title> <style type="text/css"> OL LI {LIST-STYLE-TYPE: upper-roman;} OL LI OL LI {LIST-STYLE-TYPE: upper-alpha;} OL LI OL LI OL LI {LIST-STYLE-TYPE: decimal;} </style> </head> <body> <ol> <li>Test... <ol> <li>add sub bullet after this item... </li> <li>it most likely got formatted with an "A" and not a "1"<br /> <ol> <li>It should have been a 1 like this line</li> </ol> </li> </ol> </li> </ol> </body></html>