Reputation: 1
I'm having this difficulty of overriding a table data style where the main css file text-transforms the first letter into uppersize. Any idea if I can stop this right in my aspx page (inline)? Thanks.
Upvotes: 0
Views: 143
Reputation: 9911
Try adding this to the element's inline style.
text-transform:none !important;
Upvotes: 2