标签: html css jquery-mobile
我有一个table,header我必须align将文字发送到center。
table
header
align
center
.info-header { font-size: small; text-align: center; }
但是,row仍会从 jQuery 移动版中选择左alignment。有人有任何解决方案吗?
row
alignment
答案 0 :(得分:0)
尝试 jQuery CSS将其更改为:
$('.your-selector-class').css('text-align', 'center');
This也可以为您提供帮助。