At 02:03 AM 7/22/2005, Stephanie wrote:
I need to create an alphabetic horizontal list to link to content on a page - problem I am having is that I want to float the list right but when I do that the alphabetic list is ordered from Z - A instead of A - Z.

Any clue as to how to solve this problem?

Stephanie,

Float the alphabet letters left, then float their container right, e.g.,

<div id="container">
        <ul>
                <li><a href="#A">A</a></li>
                <li><a href="#B">B</a></li>
                <li><a href="#C">C</a></li>
                ...
                <li><a href="#Z">Z</a></li>
        </ul>
</div>

div#container
{
        float: right;
}
div#container li
{
        float: left;
}

(untested, but should be close)

Paul

******************************************************
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************

Reply via email to