那可以有几种方式解决居中(左右与上下居中):
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...欢迎分享,转载请注明来源:内存溢出
评论列表(0条)