开发者

How to bring multiplication and division symbol in html?

I need to bring multiplication and division symbol in ht开发者_JAVA技巧ml codes.How to do that


Use the appropriate entities.

× for ×

÷ for ÷


Do you mean * and / or ÷ and × ? The codes for the latter are:

÷ or ÷
× or ×

http://www.visibone.com/products/ebk2-3_850.jpg


The extended ASCII code for the divide symbol is 247; try putting it into your page like this: ÷. As for the multiply symbol, just use the x character.

James


Try doing this:

<div id="multiply">&times; or &#215</div>
<div id="divide">&divide; or &#247</div>

Result:

× or × ÷ or ÷
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜