文章加密
;
2018年3月29日 星期四
CSS for when JavaScript is Enabled
document.documentElement.className = "js"
This adds a class to the root <html>, so you could (for example) do something like hide a <div> only when JavaScript is enabled.
.js div#id { display: none; }
reference:
https://css-tricks.com/snippets/javascript/css-for-when-javascript-is-enabled/
This adds a class to the root <html>, so you could (for example) do something like hide a <div> only when JavaScript is enabled.
.js div#id { display: none; }
reference:
https://css-tricks.com/snippets/javascript/css-for-when-javascript-is-enabled/
2018年3月28日 星期三
position:absolute;不受母元素overflow:hidden影響
https://stackoverflow.com/questions/3970455/overflow-hidden-not-working
2018年3月26日 星期一
2018年3月25日 星期日
不規則設計風格→svg, path
https://www.w3schools.com/graphics/svg_path.asp
https://tympanus.net/codrops/2013/10/03/a-collection-of-separator-styles/
2018年3月22日 星期四
問題未解決(二):when to use "get_result() "
https://stackoverflow.com/questions/18753262/example-of-how-to-use-bind-result-vs-get-result
其中$num_of_rows = $result->num_rows;
可直接寫成$num_of_rows = $stmt->num_rows; (從挑戰PHP7MySQL程式設計與超強專題特訓班14-29看見)
那為何要$result = $stmt->get_result();
其中$num_of_rows = $result->num_rows;
可直接寫成$num_of_rows = $stmt->num_rows; (從挑戰PHP7MySQL程式設計與超強專題特訓班14-29看見)
那為何要$result = $stmt->get_result();
訂閱:
文章 (Atom)