Hi All,

I'm trying to give a table colum some special attributs using CSS,

I've wrote something like this:

-----------------------

<HTML>
<Head>
<style>
table {width: 100%}

.col2 {
                direction: rtl;
                background-color: yellow;
}

</Style>
</Head>
<Body>
<table border="1">
<colgroup>
        <col class="col1" />
        <col class="col2" />
</colgroup>
        <tr>
                <td>Normal Text</td>
                <td>RTL Text</td>
        </tr>
        <tr>
                <td>Normal</td>
                <td>RTL Text</td>
        </tr>
        <tr>
                <td>Normal</td>
                <td>RTL Text</td>
        </tr>
</table>

</Body>
</HTML>
-----------------------

..and tested it in: FF/IE/Opera/Konqourer

The result was:

All browsers  highlighted the column but Firefox.
All Browsers DENIED "direction:rtl" but IE

Is it invalid code? or browsers bugs/limitations?

Thanks in advance

- Anas

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to