﻿/*解決 div 使用 float 不能撐開的問題
-----------------------------------------------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
} /* for IE/Mac */

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
	display: block;
}
/* End hide from IE-mac */ 


.img_3pxfix {
    display:block; /* 解決 IE <img> 有空格的情況下，出現 3px 間距的 bug */
    border-width: 0px; /* 解決 IE <img> 出現藍色邊框的問題 */
}

