我似乎無法改變我的jQuery Mobile頁面上<input>
標籤的寬度,有什麼想法?jQuery Mobile輸入寬度
http://www.nuhack.com/stackoverflow-question/
我似乎無法改變我的jQuery Mobile頁面上<input>
標籤的寬度,有什麼想法?jQuery Mobile輸入寬度
http://www.nuhack.com/stackoverflow-question/
jQuery Mobile的包裝所有輸入類型的一個div .ui-input-text
類除了type=search
具有.ui-input-search
類。所有你需要的是重寫這些類。
所有輸入類型:
div.ui-input-text { width: 50px !important }
輸入搜索類型:
div.ui-input-search { width: 50px !important }
使文本週圍包裹按鈕,使用的數據在線=「true」
<input data-inline="true" id="btn_1" type="button" value="click here"/></h4>
接受的答案不適用於我,這是。謝謝 – SamChen
重寫'div.ui-input-text'和'div.ui-input-search'用於搜索輸入http://jsfiddle.net/Palestinian/bRszY/由於'type = search'不同於其他輸入類型。 – Omar
流行,在一個答案,我會接受它@Omar - 完美,我已經搞亂了那個年齡! [感謝!] –
你也可以重寫'.ui-btn',但是這會覆蓋所有具有該類的按鈕。或者,使用'''data-role = button'並給它一個自定義的類然後覆蓋它,即'.ui-custom-btn {width:50px!important}'http://jsfiddle.net/Palestinian/ bRszY/Demo使用自定義按鈕進行更新。 – Omar