输入页制作笔记
三个DIV并排
更详细的可以参考:http://matthewjamestaylor.com/blog/perfect-3-column.htm
<div id = "container" style = "width:100%"> <div id ="left" style = "float:left; width: 25%;"> <?php echo $this->Html->image('/img/sideart.jpg'); ?> </div> <div id = "middle" style = "float:left; width: 50%;"> </div> <div id = "right" style = "float:left; width: 25%;"> </div> </div>
缩小单选框与文字间的距离
复写默认参数
input[type="radio"] {
margin-right: 0;
}