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...

你可以把它理解成一个Panel。但是Panel在客户端生成div标签,而PlaceHolder在客户端什么也不生成。PlaceHolder控件的主要作用就是往里面添加子控件,只是表示控件树上的一个位置。


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存