Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
それはかなり簡単です。jQuery Mobile UI を使用してレイアウトを作成しましたが、レスポンシブ レイアウト機能は必要ありません。それを取り除くことは可能ですか?
これを試してみてください...data-role="content"セクション内のすべてのコンテンツにラッパー div をラップします。
data-role="content"
次に、このラッパーに固定幅を与えます。
そのように、
<div data-role="content"> <div class="resize_box"> <!-- your content here --> </div> </div>
.resize_box{ width:500px; margin:0 auto; }