- 結論:連 html 與 body 都要設定 height:100%
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> html { height:100%; } body { height:100%; margin:0; padding:0; } div { border:1px solid black; background:green; height:100%; } </style> </head> <body> <div>long long long long long long long long text with break</div> </body> </html>
歡迎來到小豬圈!
2012-07-31
CSS height:100% 無法佔滿畫面整個高度
表格(table, td) 的 overflow 屬性無作用
- 直接記結論如下:
- table 要加上 table-layout:fixed 的屬性
- table 要設定寬度 width 的屬性,僅有 td 設定寬度是不夠的!
- 如果連有空格分隔的段落也要隱藏,則加上 white-space:nowrap
- 「overflow:hidden」!
2012-07-13
2012-07-06
SQLite 預設時區為GMT
- 若將 SQLite 資料庫裡的時間欄位,設為自動填入目前的時間(如下例),則預設時區一律是 GMT(+00:00) ,而非 php.ini 所設定的時區。
CREATE TABLE table_name ( col_name DATETIME DEFAULT CURRENT_TIMESTAMP );
- 解決方案之一是從 PHP 裡轉換:
<?php $get_datetime_form_sqlite = '2009-03-21 13:14'; $myDateTime = new DateTime($get_datetime_form_sqlite, new DateTimeZone('GMT')); echo $myDateTime->format(DateTime::ISO8601); //output: 2009-03-21T13:14:00+0000 $myDateTime->setTimezone(new DateTimeZone('Asia/Taipei')); echo $myDateTime->format(DateTime::ISO8601); //output: 2009-03-21T21:14:00+0800
- 另外就是做 SQL 查詢時轉換:
SELECT datetime(col_name, 'localtime') FROM table_name;
Subscribe to:
Posts (Atom)
個人常用鏈結
Labels
- .NET (1)
- Accessibility (3)
- ADSL (1)
- Apache (9)
- ASP.NET (1)
- Babyer (1)
- Browser (1)
- Canon MX700 (1)
- CAPTCHA (1)
- CentOS (1)
- CSS (7)
- DB:SQL (1)
- DB:SQLite (2)
- DNS (3)
- English (1)
- EXIF (1)
- filename.ext (1)
- Firefox (4)
- Firewall (1)
- Flash (4)
- Game 遊戲 (28)
- Game:PC (6)
- Game:PS3 (4)
- Game:Xbox360 (3)
- GNU (1)
- Google (6)
- Google:Android (8)
- Google:Blogger (2)
- Google:Chrome (1)
- Google:Code (2)
- GoogleAppEngine (2)
- GoogleMaps (1)
- GPG (1)
- Hinet (1)
- HTML (2)
- HTTP (1)
- i18n (1)
- IE (3)
- Java (2)
- Javascript (2)
- Linux (1)
- Microsoft (2)
- MIME (1)
- MySQL (7)
- NexusOne (2)
- OAuth (1)
- Open source 開放原始碼 (1)
- OpenID (1)
- OS (1)
- OS:Windows (33)
- PHP (49)
- PHP:GTK (2)
- PHP:PEAR (1)
- PHP:PECL (3)
- PHP:ZendFramework (4)
- PostgreSQL (1)
- PPPoE (1)
- RegularExpressions (2)
- Security (11)
- Sphinx (2)
- SQLite (1)
- TCP (1)
- Ubuntu (1)
- UDP (1)
- Usability (2)
- Virtaul PC (1)
- Wii (2)
- XML (1)
- Yahoo (2)
- Yahoo:BBAuth (1)
- Yahoo:YUI (1)
- Youtube (1)
- 不如賣雞排 (2)
- 不願役 (33)
- 中文處理 (1)
- 圖 (5)
- 媒體 (2)
- 影片 (1)
- 影音 (19)
- 思 (8)
- 攝 (9)
- 政 (7)
- 敗 (2)
- 漫畫 (5)
- 生活 (34)
- 硬體設備 (13)
- 網站開發 (16)
- 網路 (8)
- 英文 (3)
- 貓 (2)
- 資安 (1)
- 趣 (29)
- 軟體 (12)
- 遊記 (8)
- 運動 (2)
- 關於我 (1)
- 電影 (10)