css中怎么让小图标居中

css中怎么让小图标居中,第1张

假设小图标命名:icon.png;尺寸为16*16

那可以有几种方式解决居中(左右与上下居中):

1、<div style="text-align:centerwidth:100pxheight:36px">

<img src="images/icon.png" width="16" height="16" style="margin-top:10px" />

</div>

2、<table border="0" cellpadding="0" cellspacing="0">

<tr>

<td style="text-align:centerwidth:100pxheight:36px"><img src="images/icon.png" width="16" height="16" /></td>

</tr>

</table>

提示:td内部默认是垂直居中的

3、<div style="background:url(images/icon.png) center center no-repeatwidth:100pxheight:36px"></div>

//不解释,自己看。不保证完整,仅供思路参考#include #include "TableView.h"#include #include int main(int argc, char *argv[]){ QApplication a(argc, argv)QStandardItemModel modelfor ( int col = 0col <3col++ ) { QList list...


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8117983.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-13
下一篇 2023-04-13

发表评论

登录后才能评论

评论列表(0条)

保存