25 Useful jQuery Calendar and Date Pickers Plugins for Web Designers
http://www.tripwiremagazine.com/2011/03/25-useful-jquery-calendar-and-date-pickers-plugins-for-web-designers.html
CSS3 Buttons | Simple CSS3 framework for creating GitHub style button links
http://css3buttons.michaelhenriksen.dk/
PHP Template Engine Comparison
http://www.phpcomparison.net/
8 Essential Developer Apps for Multiple Platforms
http://mashable.com/2011/03/07/web-developer-apps/
20 New Frameworks for Web and Mobile App Developers
http://speckyboy.com/2011/03/07/20-new-frameworks-for-web-and-mobile-app-developers/
jQuery Waypoints
http://imakewebthings.github.com/jquery-waypoints/
2011年3月8日 星期二
2010年12月25日 星期六
[CSS] 改變反白顏色 Change Selection Color
測試後只有IE沒效果
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body {
background: black;
color: white;
}
::selection {
background: red; /* Safari */
}
::-moz-selection {
background: red; /* Firefox */
}
</style>
12345678910
abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ
あいうえお
かきくけこ
さしすせそ
たちつてと
なにぬねの
はひふへほ
まみむめも
やゆよ
らりるれろ
わをん
2010年9月26日 星期日
[CSS] 將footer 浮動固定在網頁下方
HTML:
CSS:
Note: 不支援IE6以下瀏覽器
如果要支援的話請搜尋 " position: fixed IE6 Hack "
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"> <div id="footer">footer圖片 and 內容</div>
CSS:
#footer {
position: fixed;
width: 100%;
bottom: 0;
z-index: 1;
}
Note: 不支援IE6以下瀏覽器
如果要支援的話請搜尋 " position: fixed IE6 Hack "
訂閱:
文章 (Atom)

