使用';控制';Magento中用于水平布局的css类

使用';控制';Magento中用于水平布局的css类,css,magento,Css,Magento,我已经在onepage签出中添加了一些单选框-我正在使用以下代码来使用Magento默认CSS样式,这是可行的,但由于它也需要验证,我现在需要将这些单选框水平显示,而不是像下面的代码那样垂直显示 Magento中的CSS样式中是否有其他类可以实现这一点 //CSS <li class="control"><input type="radio" class="radio required-entry" value="1" id="billing:organisation_type

我已经在onepage签出中添加了一些单选框-我正在使用以下代码来使用Magento默认CSS样式,这是可行的,但由于它也需要验证,我现在需要将这些单选框水平显示,而不是像下面的代码那样垂直显示

Magento中的CSS样式中是否有其他类可以实现这一点

//CSS
<li class="control"><input type="radio" class="radio required-entry" value="1" id="billing:organisation_type" name="billing[organisation_type]"> School</li>
<li class="control"><input type="radio" class="radio required-entry" value="2" id="billing:organisation_type" name="billing[organisation_type]"> Org</li>
<li class="control"><input type="radio" class="radio required-entry" value="3" id="billing:organisation_type" name="billing[organisation_type]"> Org</li>
//CSS
  • 学校
  • 组织 组织
    为什么不使用显示:内联块?这可能是最简单的方法——我希望已经有一个类为这个设置了,所以如果可能的话,我不需要任何额外的自定义css