How do I center a horizontal control group in the footer - changed in jqm 1.1.1?

后端 未结 4 1579
野趣味
野趣味 2021-01-18 02:55

This used to work to center the controlgroup in 1.1.0, but now it seems like it doesn\'t in 1.1.1.

4条回答
  •  说谎
    说谎 (楼主)
    2021-01-18 03:02

    Issue still persists if using $("selector").show(); to display element since it applies 'display:block'.

    Instead of using .show(), now use $("selector").css('display', 'inline-block');

提交回复
热议问题