|
Posted by R. Rajesh Jeba Anbiah on 06/25/06 17:47
Ørjan Langbakk wrote:
> I'm parsing a CSV-file into a table on a webpage - and I'd like to be
> able to change the alignment for the _last_ <td> in each <tr> - but, as
> the file is today, it's not possible for me to assign a CSS-class on
> only the last <td>. I was wondering if anyone could give me a clue as to
> what I need to change in the following code, to make this possible (I'm
> assuming I need to have each <td> present in the code, so as to be able
> to assign a class to the last one, but how?
<snip>
<OT>
According to your browser support, you may use CSS selectors
<http://www.w3.org/TR/css3-selectors/> for that:
td:last-child{}
</OT>
--
<?php echo 'Just another PHP saint'; ?>
Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/
[Back to original message]
|