输入页制作笔记

三个DIV并排

更详细的可以参考:http://matthewjamestaylor.com/blog/perfect-3-column.htm

<div id = "container" style = "100%">
    <div id ="left" style = "float:left;  25%;">
        <?php echo $this->Html->image('/img/sideart.jpg'); ?>
    </div>
    <div id = "middle" style = "float:left;  50%;">

    </div>
    <div id = "right" style = "float:left;  25%;">

    </div>
</div>

 缩小单选框与文字间的距离

复写默认参数

input[type="radio"] {
  margin-right: 0;
}
原文地址:https://www.cnblogs.com/ys-wuhan/p/6899977.html