bmc cpu
bmc cpu

Reputation: 1

Overriding CSS style in aspx page (inline)

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

Answers (1)

chrissr
chrissr

Reputation: 9911

Try adding this to the element's inline style.

text-transform:none !important;

Upvotes: 2

Related Questions