材料 - 警示图标



本章介绍 Google (Material) 警示图标的使用方法。假设 **custom** 是我们定义大小和颜色的 CSS 类名,如下例所示。

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://fonts.googleapis.com/icon?family=Material+Icons" rel = "stylesheet">
		
      <style>
         i.custom {font-size: 2em; color: green;}
      </style>
		
   </head>
	
   <body>
      <i class = "material-icons custom">accessibility</i>
   </body>
	
</html>

下表包含 Google (Material) 警示图标的使用方法和结果。将上述程序的 < body > 标记替换为表中给出的代码,即可获得相应的输出 -

用法 结果
<i class="material-icons custom">add_alert</i> add_alert
<i class="material-icons custom">error</i> error
<i class="material-icons custom">error_outline</i> error_outline
<i class="material-icons custom">warning</i> warning
广告