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/C here c getting capitalized, I tried with escape character also but nothing worked
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Okay, well your problem is that the browser is capitalizing the letter. Try replacing the ‘c’ with
cand if that isn’t working check any CSS styles applied to the div foror
Capitalize transforms the first character of each word to uppercase
Uppercase transforms all characters to uppercase
And change it to
==EXAMPLE==
<div>A/c</div>More Info »