Display a corner symbol in HTML

HTML symbol for corner, & ang; (& ang;) does not work in IE 6 or 7. What are other alternatives to displaying a character in Internet Explorer?

+3
source share
4 answers

You can use a solution that includes Jamie and Shoban answers and adds some conditional comments:

<style type="text/css">
span.ang { display: inline; }
span.ang_ie { display: none; }
</style>
<!--[if IE]>
<style type="text/css">
span.ang { display: none; }
span.ang_ie { display: inline; font-family: Symbol; }
</style>
<![endif]-->

<span class="ang">&ang;</span><span class="ang_ie">&#208;</span>

The above works on Windows in IE6, 7 and 8, Firefox 2 and 3, Opera 9.6 and Google Chrome 1.

Safari Windows 3 4. Safari Windows &ang; ( &#8736;). Safari Windows, JavaScript IE Safari Jamie .

+4

&#8736;

<FONT FACE="Symbol">&#208;</FONT>

ie7:). http://comers.citadel.edu/math_sym2005.htm

+4

<span class="ang">&ang;</span> 

, IE, CSS.

. css: http://www.hunlock.com/blogs/Attach_icons_to_anything_with_CSS

+3

, , &lang; ( &lang; &rang;), IE7 ( Windows XP):

(, , , .), Arial Unicode MS Lucida Sans Unicode.

, , IE7 HTML-.

: Lucida Sans Unicode . , &ang; &#8617; , &lang; &rang; .

+1

Source: https://habr.com/ru/post/1705789/


All Articles