顯示具有 css 標籤的文章。 顯示所有文章
顯示具有 css 標籤的文章。 顯示所有文章

[CSS]隱藏標籤文字

以前常常使用text-indent:9999px;

可以改成使用

.hide-text {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}


[CSS]inline-block in IE7

解決inline-block在IE7無法水平排列問題~

 display: inline-block;
 *display: inline;
 zoom: 1;

[CSS]Mobile element 100% Width

img, iframe, object, embed { max-width: 100%; }

[CSS]1px 表格製作

.table{
border-spacing:0px; /*doesn't work in IE*/ 
width: 100%;
border-collapse: collapse;
table-layout: fixed;
}