發表文章

目前顯示的是 8月, 2017的文章

7百萬被hack email名單流出應該好多人都中招。

7百萬被hack email名單流出應該好多人都中招。 如何檢查你的 E-mail 個資或信用卡資料是否已被駭客竊取? | 免費資源網路社群 簡介: https://free.com.tw/have-i-been-pwned/ 檢查名單網站: http://www.haveibeenpwned.com

CSS+DIV畫表格

轉自: (https://sofree.cc/css-table/) 開始進行CSS+DIV畫表格 為了讓大家方便在DIV和table之間的轉換,所以在CSS的命名上主要就是使用「 css_ 」作為開頭,方便做一個對照。首先,以前面的範例table範例語法: <table>     <tr>         <td>標題</td>         <td>回應</td>         <td>日期</td>     <tr>     <tr>         <td>如何停用WordPress內建搜尋功能?</td>         <td>5</td>         <td>2011-10-30</td>     <tr> </table> 接著,我們將以上語法改成CSS+DIV的切板模式,如同前面所說,為了方便對照,所以CSS的定名開頭採用「 css_ 」。 <div id="css_table">     <div class="css_tr">         <div class="css_td">標題</div>         <div class="css_td">回應</div>         <div class="css_td">日期</div>     </div>     <div class="css_tr">         <div class="css_td">如何停用WordPress內建搜尋功能?</div>         <div class="css_td">5</div>         <div class="