나는이 웹 페이지에 botton의 고정 탐색 줄이 있습니다. 이미지 버튼을 사용하고 있습니다. 공백은 버튼 주위에 계속 표시하고 나는 그것을 제거 할 수 없습니다 여기 공백 주위의 이미지 버튼 html
<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>
은 이미지입니다 :

가능한 중복 [이미지 아래에 공백을 제거 (http://stackoverflow.com/questions/7774814/remove-white-space-below-image) –
나는이 의지가 있는지 확실하지 않습니다 항상 올바르게 렌더링됩니다. 나는 아마 야에 그것을 표시하는 데 문제가있었습니다. 기본 서식 오류가있을 수 있습니다. – Paul
문제는 어떤 이유로 활성 링크가있는 것 같습니다. – Paul