IE and Edge does not respect the text-transform The 2019 Stack Overflow Developer Survey Results Are InVertically align text next to an image?How do I give text or an image a transparent background using CSS?How to disable text selection highlighting?Why does IE7 require EOT fonts to include lowercase glyphs when we use text-transform: uppercase?How do I vertically center text with CSS?How to apply multiple transforms in CSS?What does the “~” (tilde/squiggle/twiddle) CSS selector mean?What are the (if any) drawbacks of using CSS3 transform: scale on text for responsive headers?Microsoft Edge CSS text-alignMicrosoft Edge: Why does the cursor jump before a letter?

If climate change impact can be observed in nature, has that had any effect on rural, i.e. farming community, perception of the scientific consensus?

What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?

How do you keep chess fun when your opponent constantly beats you?

What do I do when my TA workload is more than expected?

What is the motivation for a law requiring 2 parties to consent for recording a conversation

What information about me do stores get via my credit card?

How did passengers keep warm on sail ships?

Is it safe to harvest rainwater that fell on solar panels?

Likelihood that a superbug or lethal virus could come from a landfill

Can an undergraduate be advised by a professor who is very far away?

The difference between dialogue marks

Is it okay to consider publishing in my first year of PhD?

How can I add encounters in the Lost Mine of Phandelver campaign without giving PCs too much XP?

Button changing its text & action. Good or terrible?

Pokemon Turn Based battle (Python)

The phrase "to the numbers born"?

Can you cast a spell on someone in the Ethereal Plane, if you are on the Material Plane and have the True Seeing spell active?

How to type a long/em dash `—`

How to translate "being like"?

Why couldn't they take pictures of a closer black hole?

A word that means fill it to the required quantity

How to type this arrow in math mode?

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?

Why does the nucleus not repel itself?



IE and Edge does not respect the text-transform



The 2019 Stack Overflow Developer Survey Results Are InVertically align text next to an image?How do I give text or an image a transparent background using CSS?How to disable text selection highlighting?Why does IE7 require EOT fonts to include lowercase glyphs when we use text-transform: uppercase?How do I vertically center text with CSS?How to apply multiple transforms in CSS?What does the “~” (tilde/squiggle/twiddle) CSS selector mean?What are the (if any) drawbacks of using CSS3 transform: scale on text for responsive headers?Microsoft Edge CSS text-alignMicrosoft Edge: Why does the cursor jump before a letter?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-3















I have the following situation I can't explain but the Microsoft browser's bug...



I have a symbolic font, and use different letters to display symbols. By example, the "z" letter is to display the "decrease font size" symbol, and the "Z" for the "increase font size" one...



However the Microsoft browsers lowercases my letters, and I have the same "z" in Edge and IE, however a correct behavior in normal browsers.



enter image description here



The bug can be observed here (in IE or Edge).



What can I do to fix it?



PS.



I tried to reproduce this in this snipped, but actually is working as fixed...
However in the link bellow the bug is reproduced...






body 
text-transform: uppercase;


span.symbol.a::before
content: " <A-xample of UPPERCASE text> ";

span.symbol.b::before
content: " <B-xample of UPPERCASE text> ";


.symbol::before
text-transform: none !important;

<div>
this is a text div
<span class="symbol a"></span>
<span class="symbol b"></span>
</div>












share|improve this question
























  • Please add the relevant CSS in a code snippet and not in a image. Also IE and Edge are "normal" browsers

    – SuperDJ
    Mar 8 at 11:47






  • 1





    You should add the relevant code in a snippet because if the website goes offline or the code changes the question wouldn't make sense without it. Also we don't dig trough external source codes

    – SuperDJ
    Mar 8 at 11:52












  • We don't need a working example just the code snippet. I mean if it was working it wasn't a question. And yes they are normal browsers just bad browsers. Hopefully Edge will change when they start using chromium

    – SuperDJ
    Mar 8 at 12:21












  • @SuperDJ, I added the snippet, but now you will say there's no problem, however there is a problem on the working site...

    – Serge
    Mar 8 at 12:41











  • so, you will close the question because I can't reproduce it in a snippet, if I understood well...?

    – Serge
    Mar 8 at 12:48

















-3















I have the following situation I can't explain but the Microsoft browser's bug...



I have a symbolic font, and use different letters to display symbols. By example, the "z" letter is to display the "decrease font size" symbol, and the "Z" for the "increase font size" one...



However the Microsoft browsers lowercases my letters, and I have the same "z" in Edge and IE, however a correct behavior in normal browsers.



enter image description here



The bug can be observed here (in IE or Edge).



What can I do to fix it?



PS.



I tried to reproduce this in this snipped, but actually is working as fixed...
However in the link bellow the bug is reproduced...






body 
text-transform: uppercase;


span.symbol.a::before
content: " <A-xample of UPPERCASE text> ";

span.symbol.b::before
content: " <B-xample of UPPERCASE text> ";


.symbol::before
text-transform: none !important;

<div>
this is a text div
<span class="symbol a"></span>
<span class="symbol b"></span>
</div>












share|improve this question
























  • Please add the relevant CSS in a code snippet and not in a image. Also IE and Edge are "normal" browsers

    – SuperDJ
    Mar 8 at 11:47






  • 1





    You should add the relevant code in a snippet because if the website goes offline or the code changes the question wouldn't make sense without it. Also we don't dig trough external source codes

    – SuperDJ
    Mar 8 at 11:52












  • We don't need a working example just the code snippet. I mean if it was working it wasn't a question. And yes they are normal browsers just bad browsers. Hopefully Edge will change when they start using chromium

    – SuperDJ
    Mar 8 at 12:21












  • @SuperDJ, I added the snippet, but now you will say there's no problem, however there is a problem on the working site...

    – Serge
    Mar 8 at 12:41











  • so, you will close the question because I can't reproduce it in a snippet, if I understood well...?

    – Serge
    Mar 8 at 12:48













-3












-3








-3








I have the following situation I can't explain but the Microsoft browser's bug...



I have a symbolic font, and use different letters to display symbols. By example, the "z" letter is to display the "decrease font size" symbol, and the "Z" for the "increase font size" one...



However the Microsoft browsers lowercases my letters, and I have the same "z" in Edge and IE, however a correct behavior in normal browsers.



enter image description here



The bug can be observed here (in IE or Edge).



What can I do to fix it?



PS.



I tried to reproduce this in this snipped, but actually is working as fixed...
However in the link bellow the bug is reproduced...






body 
text-transform: uppercase;


span.symbol.a::before
content: " <A-xample of UPPERCASE text> ";

span.symbol.b::before
content: " <B-xample of UPPERCASE text> ";


.symbol::before
text-transform: none !important;

<div>
this is a text div
<span class="symbol a"></span>
<span class="symbol b"></span>
</div>












share|improve this question
















I have the following situation I can't explain but the Microsoft browser's bug...



I have a symbolic font, and use different letters to display symbols. By example, the "z" letter is to display the "decrease font size" symbol, and the "Z" for the "increase font size" one...



However the Microsoft browsers lowercases my letters, and I have the same "z" in Edge and IE, however a correct behavior in normal browsers.



enter image description here



The bug can be observed here (in IE or Edge).



What can I do to fix it?



PS.



I tried to reproduce this in this snipped, but actually is working as fixed...
However in the link bellow the bug is reproduced...






body 
text-transform: uppercase;


span.symbol.a::before
content: " <A-xample of UPPERCASE text> ";

span.symbol.b::before
content: " <B-xample of UPPERCASE text> ";


.symbol::before
text-transform: none !important;

<div>
this is a text div
<span class="symbol a"></span>
<span class="symbol b"></span>
</div>








body 
text-transform: uppercase;


span.symbol.a::before
content: " <A-xample of UPPERCASE text> ";

span.symbol.b::before
content: " <B-xample of UPPERCASE text> ";


.symbol::before
text-transform: none !important;

<div>
this is a text div
<span class="symbol a"></span>
<span class="symbol b"></span>
</div>





body 
text-transform: uppercase;


span.symbol.a::before
content: " <A-xample of UPPERCASE text> ";

span.symbol.b::before
content: " <B-xample of UPPERCASE text> ";


.symbol::before
text-transform: none !important;

<div>
this is a text div
<span class="symbol a"></span>
<span class="symbol b"></span>
</div>






css css3 internet-explorer-11 microsoft-edge






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 at 12:46







Serge

















asked Mar 8 at 11:13









SergeSerge

3,29734293




3,29734293












  • Please add the relevant CSS in a code snippet and not in a image. Also IE and Edge are "normal" browsers

    – SuperDJ
    Mar 8 at 11:47






  • 1





    You should add the relevant code in a snippet because if the website goes offline or the code changes the question wouldn't make sense without it. Also we don't dig trough external source codes

    – SuperDJ
    Mar 8 at 11:52












  • We don't need a working example just the code snippet. I mean if it was working it wasn't a question. And yes they are normal browsers just bad browsers. Hopefully Edge will change when they start using chromium

    – SuperDJ
    Mar 8 at 12:21












  • @SuperDJ, I added the snippet, but now you will say there's no problem, however there is a problem on the working site...

    – Serge
    Mar 8 at 12:41











  • so, you will close the question because I can't reproduce it in a snippet, if I understood well...?

    – Serge
    Mar 8 at 12:48

















  • Please add the relevant CSS in a code snippet and not in a image. Also IE and Edge are "normal" browsers

    – SuperDJ
    Mar 8 at 11:47






  • 1





    You should add the relevant code in a snippet because if the website goes offline or the code changes the question wouldn't make sense without it. Also we don't dig trough external source codes

    – SuperDJ
    Mar 8 at 11:52












  • We don't need a working example just the code snippet. I mean if it was working it wasn't a question. And yes they are normal browsers just bad browsers. Hopefully Edge will change when they start using chromium

    – SuperDJ
    Mar 8 at 12:21












  • @SuperDJ, I added the snippet, but now you will say there's no problem, however there is a problem on the working site...

    – Serge
    Mar 8 at 12:41











  • so, you will close the question because I can't reproduce it in a snippet, if I understood well...?

    – Serge
    Mar 8 at 12:48
















Please add the relevant CSS in a code snippet and not in a image. Also IE and Edge are "normal" browsers

– SuperDJ
Mar 8 at 11:47





Please add the relevant CSS in a code snippet and not in a image. Also IE and Edge are "normal" browsers

– SuperDJ
Mar 8 at 11:47




1




1





You should add the relevant code in a snippet because if the website goes offline or the code changes the question wouldn't make sense without it. Also we don't dig trough external source codes

– SuperDJ
Mar 8 at 11:52






You should add the relevant code in a snippet because if the website goes offline or the code changes the question wouldn't make sense without it. Also we don't dig trough external source codes

– SuperDJ
Mar 8 at 11:52














We don't need a working example just the code snippet. I mean if it was working it wasn't a question. And yes they are normal browsers just bad browsers. Hopefully Edge will change when they start using chromium

– SuperDJ
Mar 8 at 12:21






We don't need a working example just the code snippet. I mean if it was working it wasn't a question. And yes they are normal browsers just bad browsers. Hopefully Edge will change when they start using chromium

– SuperDJ
Mar 8 at 12:21














@SuperDJ, I added the snippet, but now you will say there's no problem, however there is a problem on the working site...

– Serge
Mar 8 at 12:41





@SuperDJ, I added the snippet, but now you will say there's no problem, however there is a problem on the working site...

– Serge
Mar 8 at 12:41













so, you will close the question because I can't reproduce it in a snippet, if I understood well...?

– Serge
Mar 8 at 12:48





so, you will close the question because I can't reproduce it in a snippet, if I understood well...?

– Serge
Mar 8 at 12:48












1 Answer
1






active

oldest

votes


















0














The only (and ugly) solution I found for this issue, is to use Unicode codes instead of the letters. It means, even if the buggy Microsoft browsers lowsercases the symbols, they can't lowsercase a UPPERCASE code letter.



By eg. instead of use content: "Z" I would use content: "05A" and instead of content: "z" => content: "07A"
In that case, even the "bad" Microsoft browsers (Edge and IE) displays the correct cased char.






share|improve this answer

























  • I try to test the above sample code with IE and Edge but not able to produce the issue. However, you had posted the answer for your question. I suggest you to try to mark your own answer as an accepted answer for this question. It can help other community members in future in similar kind of issues. Thanks for your understanding.

    – Deepak-MSFT
    Mar 11 at 2:29











  • @Deepak-MSFT as said in the OP, the sample does not reproduce the problem, because maybe there some things I missed when trying to reproduce the problem in a sample. I can't reproduce it in the sample. BUT the problem DOES EXIST in the link I posted. IT DOES EXIST, and it exists only on EGDE AND IE. Actually it is fixed with the unicode code as the solution I posted, but easy reproductible if you put the letter instead of the code using F12 tools. Thanks for the conprehension.

    – Serge
    Mar 12 at 10:38












  • the solution I posted is not a genuine fix, but a workaround, so the browsers have some bugs needed to be fixed to correspond to the normal browsers like Chrome or Firefox.

    – Serge
    Mar 12 at 10:40












  • I posed the sample, because admins like @SuperDJ asked me to put a sample. But the sample unfortunately does not reproduce the problem.

    – Serge
    Mar 12 at 10:46











  • You can try to modify your original post and try to provide a detailed step by step information to produce the issue. We will again try to produce the issue and try to check for the issue. Thanks for your understanding.

    – Deepak-MSFT
    Mar 13 at 6:38











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55062047%2fie-and-edge-does-not-respect-the-text-transform%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














The only (and ugly) solution I found for this issue, is to use Unicode codes instead of the letters. It means, even if the buggy Microsoft browsers lowsercases the symbols, they can't lowsercase a UPPERCASE code letter.



By eg. instead of use content: "Z" I would use content: "05A" and instead of content: "z" => content: "07A"
In that case, even the "bad" Microsoft browsers (Edge and IE) displays the correct cased char.






share|improve this answer

























  • I try to test the above sample code with IE and Edge but not able to produce the issue. However, you had posted the answer for your question. I suggest you to try to mark your own answer as an accepted answer for this question. It can help other community members in future in similar kind of issues. Thanks for your understanding.

    – Deepak-MSFT
    Mar 11 at 2:29











  • @Deepak-MSFT as said in the OP, the sample does not reproduce the problem, because maybe there some things I missed when trying to reproduce the problem in a sample. I can't reproduce it in the sample. BUT the problem DOES EXIST in the link I posted. IT DOES EXIST, and it exists only on EGDE AND IE. Actually it is fixed with the unicode code as the solution I posted, but easy reproductible if you put the letter instead of the code using F12 tools. Thanks for the conprehension.

    – Serge
    Mar 12 at 10:38












  • the solution I posted is not a genuine fix, but a workaround, so the browsers have some bugs needed to be fixed to correspond to the normal browsers like Chrome or Firefox.

    – Serge
    Mar 12 at 10:40












  • I posed the sample, because admins like @SuperDJ asked me to put a sample. But the sample unfortunately does not reproduce the problem.

    – Serge
    Mar 12 at 10:46











  • You can try to modify your original post and try to provide a detailed step by step information to produce the issue. We will again try to produce the issue and try to check for the issue. Thanks for your understanding.

    – Deepak-MSFT
    Mar 13 at 6:38















0














The only (and ugly) solution I found for this issue, is to use Unicode codes instead of the letters. It means, even if the buggy Microsoft browsers lowsercases the symbols, they can't lowsercase a UPPERCASE code letter.



By eg. instead of use content: "Z" I would use content: "05A" and instead of content: "z" => content: "07A"
In that case, even the "bad" Microsoft browsers (Edge and IE) displays the correct cased char.






share|improve this answer

























  • I try to test the above sample code with IE and Edge but not able to produce the issue. However, you had posted the answer for your question. I suggest you to try to mark your own answer as an accepted answer for this question. It can help other community members in future in similar kind of issues. Thanks for your understanding.

    – Deepak-MSFT
    Mar 11 at 2:29











  • @Deepak-MSFT as said in the OP, the sample does not reproduce the problem, because maybe there some things I missed when trying to reproduce the problem in a sample. I can't reproduce it in the sample. BUT the problem DOES EXIST in the link I posted. IT DOES EXIST, and it exists only on EGDE AND IE. Actually it is fixed with the unicode code as the solution I posted, but easy reproductible if you put the letter instead of the code using F12 tools. Thanks for the conprehension.

    – Serge
    Mar 12 at 10:38












  • the solution I posted is not a genuine fix, but a workaround, so the browsers have some bugs needed to be fixed to correspond to the normal browsers like Chrome or Firefox.

    – Serge
    Mar 12 at 10:40












  • I posed the sample, because admins like @SuperDJ asked me to put a sample. But the sample unfortunately does not reproduce the problem.

    – Serge
    Mar 12 at 10:46











  • You can try to modify your original post and try to provide a detailed step by step information to produce the issue. We will again try to produce the issue and try to check for the issue. Thanks for your understanding.

    – Deepak-MSFT
    Mar 13 at 6:38













0












0








0







The only (and ugly) solution I found for this issue, is to use Unicode codes instead of the letters. It means, even if the buggy Microsoft browsers lowsercases the symbols, they can't lowsercase a UPPERCASE code letter.



By eg. instead of use content: "Z" I would use content: "05A" and instead of content: "z" => content: "07A"
In that case, even the "bad" Microsoft browsers (Edge and IE) displays the correct cased char.






share|improve this answer















The only (and ugly) solution I found for this issue, is to use Unicode codes instead of the letters. It means, even if the buggy Microsoft browsers lowsercases the symbols, they can't lowsercase a UPPERCASE code letter.



By eg. instead of use content: "Z" I would use content: "05A" and instead of content: "z" => content: "07A"
In that case, even the "bad" Microsoft browsers (Edge and IE) displays the correct cased char.







share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 12 at 10:43

























answered Mar 8 at 13:24









SergeSerge

3,29734293




3,29734293












  • I try to test the above sample code with IE and Edge but not able to produce the issue. However, you had posted the answer for your question. I suggest you to try to mark your own answer as an accepted answer for this question. It can help other community members in future in similar kind of issues. Thanks for your understanding.

    – Deepak-MSFT
    Mar 11 at 2:29











  • @Deepak-MSFT as said in the OP, the sample does not reproduce the problem, because maybe there some things I missed when trying to reproduce the problem in a sample. I can't reproduce it in the sample. BUT the problem DOES EXIST in the link I posted. IT DOES EXIST, and it exists only on EGDE AND IE. Actually it is fixed with the unicode code as the solution I posted, but easy reproductible if you put the letter instead of the code using F12 tools. Thanks for the conprehension.

    – Serge
    Mar 12 at 10:38












  • the solution I posted is not a genuine fix, but a workaround, so the browsers have some bugs needed to be fixed to correspond to the normal browsers like Chrome or Firefox.

    – Serge
    Mar 12 at 10:40












  • I posed the sample, because admins like @SuperDJ asked me to put a sample. But the sample unfortunately does not reproduce the problem.

    – Serge
    Mar 12 at 10:46











  • You can try to modify your original post and try to provide a detailed step by step information to produce the issue. We will again try to produce the issue and try to check for the issue. Thanks for your understanding.

    – Deepak-MSFT
    Mar 13 at 6:38

















  • I try to test the above sample code with IE and Edge but not able to produce the issue. However, you had posted the answer for your question. I suggest you to try to mark your own answer as an accepted answer for this question. It can help other community members in future in similar kind of issues. Thanks for your understanding.

    – Deepak-MSFT
    Mar 11 at 2:29











  • @Deepak-MSFT as said in the OP, the sample does not reproduce the problem, because maybe there some things I missed when trying to reproduce the problem in a sample. I can't reproduce it in the sample. BUT the problem DOES EXIST in the link I posted. IT DOES EXIST, and it exists only on EGDE AND IE. Actually it is fixed with the unicode code as the solution I posted, but easy reproductible if you put the letter instead of the code using F12 tools. Thanks for the conprehension.

    – Serge
    Mar 12 at 10:38












  • the solution I posted is not a genuine fix, but a workaround, so the browsers have some bugs needed to be fixed to correspond to the normal browsers like Chrome or Firefox.

    – Serge
    Mar 12 at 10:40












  • I posed the sample, because admins like @SuperDJ asked me to put a sample. But the sample unfortunately does not reproduce the problem.

    – Serge
    Mar 12 at 10:46











  • You can try to modify your original post and try to provide a detailed step by step information to produce the issue. We will again try to produce the issue and try to check for the issue. Thanks for your understanding.

    – Deepak-MSFT
    Mar 13 at 6:38
















I try to test the above sample code with IE and Edge but not able to produce the issue. However, you had posted the answer for your question. I suggest you to try to mark your own answer as an accepted answer for this question. It can help other community members in future in similar kind of issues. Thanks for your understanding.

– Deepak-MSFT
Mar 11 at 2:29





I try to test the above sample code with IE and Edge but not able to produce the issue. However, you had posted the answer for your question. I suggest you to try to mark your own answer as an accepted answer for this question. It can help other community members in future in similar kind of issues. Thanks for your understanding.

– Deepak-MSFT
Mar 11 at 2:29













@Deepak-MSFT as said in the OP, the sample does not reproduce the problem, because maybe there some things I missed when trying to reproduce the problem in a sample. I can't reproduce it in the sample. BUT the problem DOES EXIST in the link I posted. IT DOES EXIST, and it exists only on EGDE AND IE. Actually it is fixed with the unicode code as the solution I posted, but easy reproductible if you put the letter instead of the code using F12 tools. Thanks for the conprehension.

– Serge
Mar 12 at 10:38






@Deepak-MSFT as said in the OP, the sample does not reproduce the problem, because maybe there some things I missed when trying to reproduce the problem in a sample. I can't reproduce it in the sample. BUT the problem DOES EXIST in the link I posted. IT DOES EXIST, and it exists only on EGDE AND IE. Actually it is fixed with the unicode code as the solution I posted, but easy reproductible if you put the letter instead of the code using F12 tools. Thanks for the conprehension.

– Serge
Mar 12 at 10:38














the solution I posted is not a genuine fix, but a workaround, so the browsers have some bugs needed to be fixed to correspond to the normal browsers like Chrome or Firefox.

– Serge
Mar 12 at 10:40






the solution I posted is not a genuine fix, but a workaround, so the browsers have some bugs needed to be fixed to correspond to the normal browsers like Chrome or Firefox.

– Serge
Mar 12 at 10:40














I posed the sample, because admins like @SuperDJ asked me to put a sample. But the sample unfortunately does not reproduce the problem.

– Serge
Mar 12 at 10:46





I posed the sample, because admins like @SuperDJ asked me to put a sample. But the sample unfortunately does not reproduce the problem.

– Serge
Mar 12 at 10:46













You can try to modify your original post and try to provide a detailed step by step information to produce the issue. We will again try to produce the issue and try to check for the issue. Thanks for your understanding.

– Deepak-MSFT
Mar 13 at 6:38





You can try to modify your original post and try to provide a detailed step by step information to produce the issue. We will again try to produce the issue and try to check for the issue. Thanks for your understanding.

– Deepak-MSFT
Mar 13 at 6:38



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55062047%2fie-and-edge-does-not-respect-the-text-transform%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved