HTML character display problem
I am trying to display A/c in a div tag, but this label comes from a spring multilingual framework and getting converted into A/开发者_StackOverflowC here c getting capitalized, I tried with escape character also but nothing worked
Okay, well your problem is that the browser is capitalizing the letter. Try replacing the 'c' with c
and if that isn't working check any CSS styles applied to the div for
text-transform: capitalize;
or
text-transform: uppercase;
Capitalize transforms the first character of each word to uppercase
Uppercase transforms all characters to uppercase
And change it to
text-transform: none;
==EXAMPLE==
<div>A/c</div>
More Info »
精彩评论