我有以下代码:
<fieldset>
<legend>
<strong>Personal Information</strong>
</legend>
<ul>
<li>
<label for="first_name">First Name</label><br />
<input type="text" id="first_name" name="first_name" value="" maxlength="30" />
</li>
...
</ul>
</fieldset>
<fieldset>
<legend>
<strong>Car Information</strong>
</legend>
<ul>
<li>
<label for="car_make">Make</label><br />
<input type="text" id="car_make" name="car_make" value="" maxlength="30" />
</li>
...
</ul>
</fieldset>
现在一切都在左侧,第二个字段集(汽车信息)就在第一个字段集(个人信息)的正下方。
我希望汽车信息字段集位于个人信息字段集的右侧,因此它们并排。使用css,我该怎么做?