0

ブラックベリー OS 5 および 7 で div を使用しようとしましたが、適切な結果が得られません。私を案内してください..または適切な設計方法を教えてください。ラップせずにスクロール可能なdivが必要です。

4

1 に答える 1

0

phonegap ブラックベリー os5 で div を使用する形式

    <div data-role="header">
        <h1>Auth Demo</h1>
   </div>

    <div data-role="content">    

        <form id="loginForm">
        <div data-role="fieldcontain" class="ui-hide-label">
           <label for="username">Username:</label>
           <input type="text" name="username" id="username" value="" placeholder="Username" />
        </div>

        <div data-role="fieldcontain" class="ui-hide-label">
            <label for="password">Password:</label>
           <input type="password" name="password" id="password" value="" placeholder="Password" />
       </div>

       <input type="submit" value="Login" id="submitButton">
        </form>

    </div>
 <div data-role="footer">
        <h4>&copy; Camden Enterprises</h4>
   </div>

</div>
于 2013-08-12T10:15:27.440 に答える