I'm attempting to align an individual cells text, to the left. But it does nothing. I've IDed the cell as "time". Heres my CSS.
Code:#time { text-align: left; }
I'm attempting to align an individual cells text, to the left. But it does nothing. I've IDed the cell as "time". Heres my CSS.
Code:#time { text-align: left; }
The default text alignment in a table cell is left. You must have something(s) else in your style and/or layout that is contradicting this and that your style for #time cannot overcome (often, this would be a class that contains the #time cell*). I would need to see your page to be more specific.
* To fix that, change your selector to the class name followed by the id, ex:
Note: This is just an example of a possible solution to a possible problem. I would need to see your page to be more specific.Code:.class_name #time { text-align:left; }
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Thank you, but I figured it out. I made a VERY idiotic mistake...I said left, I wanted right. So I fixed it.
Bookmarks