我在像这样的Zurb基础单元格中的div上有两个元素
<div className="cell small-8 medium-6 large-8 title">
<h6>title of the item</h6>
<p>description of the item</p>
</div>
并且它们显示在同一行中
[title of the item
description of the item
但是我想要两个元素放在不同的行中
title of the item
description of the item
是
<div className="cell small-8 medium-6 large-8 title">
预期为
<div class="cell small-8 medium-6 large-8 title">
?