﻿/* 注意！！！css样式名区分大小写 */

/*    由于这些列均为浮动列，因此未对其指定边距。如果要添加边距margin，请避免在浮动方向一侧放置边距。可用填充padding。
      
      对于必须打破此规则的 div，应向该 div 的规则中添加“display:inline”声明，以控制某些版本的 Internet Explorer 会使边距翻倍的错误。*/


/* width 占用的宽度为可以编辑内容的宽度 */
/*    width + 左右padding + 左右border = div的宽度 ，
                                           + 左右margin = div占用宽度    */

/* 设置line-height与height相等，可使DIV中单行文字垂直居中 */   

/* text-align :center; 文字水平居中 */          
 
                                           
.clear
{
    clear: both;        /* 清除左右浮动 */
    line-height :0px;
}


.bold
{
    font-weight: bold; /* 文字粗体 */
}
