私は次のhtmlを持っています:
<head>
<link href="http://yui.yahooapis.com/pure/0.3.0/base-min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form action="/item" class="pure-form pure-form-stacked" method="POST">
<fieldset>
<label for="item">Name of item</label>
<input id="item" name="item" type="text" />
<label for="desc">Description</label>
<input id="desc" name="desc" type="text" />
<input type="submit" value="Add" />
</fieldset>
</form>
</body>
これは、 http://purecss.io/forms/の例 (スタック フォーム) のようにはレンダリングされませんが、インライン フォームに似ています (あまり良くありません)。私のhtmlに何か問題がありますか?