如果页面变小,我希望列表#2移动到新行。 我知道我可以把它写成身体,但我只想写一行代码。
编辑:忘了在JQueryMobile中提及它。在浏览器中查看它并使窗口一直很小。项目2在页面上运行,我想让它自动开始一个新的行与<风格>在头上
<head>
<style>
h1 {white-space:normal}
</style>
</head>
<body>
<div class="mainpage" data-role="page">
<header data-role="header">
<p style="text-align:center"> Edition</p>
</header>
<article data-role="content">
<ul data-role="listview" data-filter="true">
<li>
<a href="#">
<h1>1. Guidelines on antimicrobial treatment</h1>
</a>
</li>
<li>
<a href="#">
<h1>2. Basic infection prevention and control measures</h1>
</a>
</li>
</ul>
</article>
</div>
</body>