1 頁 (共 1 頁)

[CSS]在IE6, IE7, IE8下的CSS差異

發表於 : 2009年 10月 15日, 10:36
tim
這篇整理十分詳細: http://www.smashingmagazine.com/2009/10 ... 6-7-and-8/

其中有個 auto-incrementing numbers 的功能

代碼: 選擇全部

h2 {  
  counter-increment: headers;  
}  
   
h2:before {  
  content: counter(headers) ". ";  
}  
還真沒看過咧.