1. 程式人生 > >2017年9月15日

2017年9月15日

cursor z-index nbsp -i post mar 瀏覽器 padding 隱藏

格式與布局

postion:fixed 鎖定位置(相對於瀏覽器的位置)

*{

margin:0px

padding:0px

}

居中:margin:0px(距離上側) auto

分層:z-index

overflow:hidden //超出部分隱藏;scroll 顯示出滾動條

<div style="clear:both"></div> 截斷流

overflow:hidden 超出範圍時隱藏

scoll 超出範圍時出滾動條*/

cursor:pointer 鼠標指導上面時的形狀

&copy 版權符號

半透明效果

<div class="box">透明區域</div>

//樣式表中代碼

.box{

opacity:0.5;-moz-opacity:0.5;filter:alpha(opacity=50)

}

2017年9月15日