W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="//code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css"> <script src="//code.jquery.com/jquery-1.8.3.min.js"></script> <script src="//code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script> </head> <body> <div data-role="page" id="pageone"> <div data-role="header"> <h1>列</h1> </div> <div data-role="content"> <p>五列布局:</p> <div class="ui-grid-d"> <div class="ui-block-a"><a href="#" data-role="button">第一列</a><br> <span>第一列:This is some text. This is some text. This is some text. This is some text. This is some text.</span> </div> <div class="ui-block-b"> <a href="#" data-role="button">第二列</a><br> <span>第二列:This is some text. This is some text. This is some text. This is some text.</span> </div> <div class="ui-block-c"> <a href="#" data-role="button">第三列</a><br> <span>第三列:This is some text. This is some text. This is some text. This is some text.</span> </div> <div class="ui-block-d"> <a href="#" data-role="button">第四列</a><br> <span>第四列:This is some text. This is some text. This is some text. This is some text.</span> </div> <div class="ui-block-e"> <a href="#" data-role="button">第五列</a><br> <span>第五列:This is some text. This is some text. This is some text. This is some text.</span> </div> </div> </div> </div> </body> </html>