我有一个页面,其中一个按钮标有一个字形图标(引导程序)。
我有一个新要求,即使用“Wave”工具(https://wave.webaim.org/extension/)检查页面时不能出现“错误”。
问题是 Wave 会为按钮引发错误,因为它是一个“空按钮”。
我尝试使用带有替代文字的图像。这修复了 Wave 错误,但它使按钮稍微变大了,我也对为此滥用图像感到不安。
这是显示问题的页面的最小版本:
<html lang="en">
<head>
<title>title</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
</head>
<body>
<div>
<button>
<span class="glyphicon glyphicon-chevron-up"></span>
</button>
</div>
<div>
<button>
<span class="glyphicon glyphicon-chevron-up"></span>
<img src="https://upload.wikimedia.org/wikipedia/commons/c/ce/Transparent.gif" alt="UP button">
</button>
</div>
</body>
</html>
有没有比虚拟 img 更好的方法来确保可访问性(为 glyphicon 提供替代文本)?