If I understand what you’re saying you want some sort of ELSE
for the condition, could do this if !(IE 7)
, for example:
<!--[if IE 7]>
<p>Você esta usando Internet Explorer 7!</p>
<![endif]-->
<!--[if !(IE 7)]>
<p>Você esta usando outro navegador!</p>
<![endif]-->
However I recommend rethinking the use of this, because conditional comments do not work in modern browsers as stated by the page https://msdn.microsoft.com/pt-br/library/hh801214(v=vs.85). aspx, nay there is more support from Internet Explorer 10, however it is possible to make it work by emulating IE9 for example, just add this:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9">
So I recommend going over all of this and abandoning these kinds of hacks maybe even create something simpler that still meets the expected functionality and behave equally in several browsers, I know it depends on experience, but this is the opportunity to improve, because supporting two different things can bring you as many headaches as trying to create something simple that runs at all.
Here on IE7 I have installed worked normally.
– Guilherme Nascimento
which IE you are using? as you did the IF?
– Rafael Castro
IE7 as I said, from what I understand you want a "ELSE" for parole?
– Guilherme Nascimento
this, if IE7 will appear what is in the conditional comment of another browser appears below which is not conditional
– Rafael Castro
If I were religious I would pray that the spirituality felt sorry for your soul just because you have to support IE7 (MS is already in 11...)
– Oralista de Sistemas