我有这个例子: 小提琴链接
使用 display: table, display: table-cell, display: table-row 的表格
我需要在 <p> 之前添加一个 <span> 标记,但是我的表结构中断了。
任何想法?谢谢
例子:
<fieldset>
<span>
<p>
<label>First Name: </label>
<input type="text" />
</p>
</span>
<span>
<p>
<label>Second Name: </label>
<input type="text" />
</p>
</span>
<span>
<p>
<label>Country: </label>
<select>
<option>Choose</option>
</select>
</p>
</span>
<span>
<p>
<label>Age: </label>
<select>
<option>Choose</option>
</select>
</p>
</span>
</fieldset>