我有这个网页,底部有一个固定的导航栏;我正在使用图像按钮。按钮周围继续出现空白,我无法消除它:
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js">
</script>
<style>
img {
border: none;
display: block;
float:left;
}
</style>
</head>
<body>
<div id="ider" data-position="fixed" data-role="navbar" class="ui-navbar" role="navigation">
<ul class="ui-grid-b">
<li class="ui-block-a">
<a href="index.html"><img style="width:100%; height:100%" src="icon1.png"></a>
</li>
<li class="ui-block-b">
<a href="index.html"><img style="width:100%; height:100%" src="icon2.png"></a>
</li>
<li class="ui-block-c">
<a href="index.html"><img style="width:100%; height:100%" src="icon3.png"></a>
</li>
</ul>
</div>
</body>
以下是图片: