HTML5 数学运算符
HTML5 数学运算符用于在 HTML 文档中表示数学和技术运算符。因此,若要将此类运算符用于网页,需使用 HTML 实体名称。如果不存在实体名称,则可以使用实体编号,实体编号为十进制或十六进制引用。
语法
以下为 HTML5 数学运算符的语法 −
&operatorName;
或
&#operatorHexcode;
或
&#operatorHexadecimalcode;
我们看一个 HTML5 数学运算符示例 −
示例
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); text-align: center; } </style> <body> <h1>HTML5 Mathematical Operator Demo</h1> <p>Some Mathematical Symbols</p> <p>− -- minus sign</p> <p>° -- degree sign</p> <p>∑ -- sigma sign</p> <p>> -- greater than sign</p> <p>≥ -- greater than or equal to sign</p> <p>< -- less than sign</p> <p>≤ -- less than or equal to sign</p> <p>∫ -- integration sign</p> </body> </html>
输出
广告