如何设置按钮图片的上间距和下间距
Posted 羽翼时空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置按钮图片的上间距和下间距相关的知识,希望对你有一定的参考价值。
(1)
<button id="btn_OrderTime" type="button" class="btn btn-mini btn-img" onclick="orderByOrderTime()">
收藏时间
<i class="icon-down"></i>
</button>
css
<style>
/*background: url(/sysres/images/icon-down.png) left top no-repeat;*/
.icon-down {
background: url(/sysres/images/icon-down.png) 1px 2px no-repeat;
background-size: 12px;
}
</style>
(2)
<a class="btn">
<img src="/sysres/images/icon-down.png" />
</a>
<style>
.btn img {
width: 13px; //设置图片的大小
position: relative;//定位类型为相对定位
left: 1px;//图片的左间距
top: 1px;//图片的上间距
}
</style>
以上是关于如何设置按钮图片的上间距和下间距的主要内容,如果未能解决你的问题,请参考以下文章
iOS开发小技巧--修改按钮内部图片和文字之间的间距(xib)
设置BottomNavigationBar导航栏的间距和文字,图片大小