我有一個固定的導航欄在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) –
我不知道這是否會總是正確渲染。在Amaya,我有問題顯示。我認爲你可能有一些基本的格式錯誤。 – Paul
由於某些原因,問題似乎與活動鏈接有關。 – Paul