- cd 切換目錄指令
- ls 查看目錄內檔案
- mkdir 新增目錄
- rmdir 刪除目錄
<table>
: 用來標記表格<tr>
: 用來在表個中標示一列(ROW)<td>
: 用來在一列中標示儲存格(COL)<th>
: 用來在一列中標示標題儲存格,其內容會置中並加上粗體<table border="1"> <tr> <th>第一欄</th> <th>第二攔</th> </tr> <tr> <td>1-1</td> <td>1-2</td> </tr> <tr> <td>2-1</td> <td>2-2</td> </tr> <tr> <td>3-1</td> <td>3-2</td> </tr> </table>
第一欄 第二欄 1-1 1-2 2-1 2-2 3-1 3-2
<caption>
: 用來指定表格標題
<thead>
: 用來標示表格的表頭<tbody>
: 用來標示表格的主體<tfoot>
: 用來標示表格的結尾
<colgroup>
<col>
background-color
,color
,width
,height
,font-size
參考連結
rowspan="n"
colspan="n"
<header>
<aside>
<article>
<footer>
margin: 25px 50px 75px 100px;
- top margin is 25px
- right margin is 50px
- bottom margin is 75px
- left margin is 100px
margin: 25px 50px 75px;
- top margin is 25px
- right and left margins are 50px
- bottom margin is 75px
margin: 25px 50px;
- top and bottom margins are 25px
- right and left margins are 50px
margin 25px;
- all four margins are 25px
float
、clear
、text-align
、padding
<form>
<input>
text
: 可用於輸入文字,例如: 帳號密碼的框框radio
: 可用於單選按鈕輸入checkbox
: 可用於多選按鈕輸入submit
: 提交表單reset
: 重製表單- 其餘型態可參考這個網站 : HTML Input Types
<select>
: 下拉式選單<textarea>
: 類似於<input tpye="text">
,可用於輸入大量文字的框框<fieldset>
、<legend>
: 組合表單區塊- 其餘可參考這個網站 : HTML Forms
list-style
: 清單樣式display:
: 顯示方式text-indent
: 文字第一行縮排line-height
: 設定字體範圍高度a:hover
: 滑鼠移到連結上時
justify-content
: 決定了內容元素的「水平對齊」位置。flex-start | flex-end | center | space-between | space-around;
flex-direction
: 決定了內容元素的「排列方向」。row | row-reverse | column | column-reverse;
align-items
: 決定了內容元素的「垂直對齊」位置,針對內容為單行的元素進行處理。flex-start | flex-end | center | baseline | stretch;
align-self
: 作用在於覆寫已經套用align-items
的屬性。flex-start | flex-end | center | space-between | space-around | stretch;
align-content
: 針對內容為多行的元素進行處理。flex-start | flex-end | center | space-between | space-around | stretch;
flex-wrap
: 這個屬性負責的是讓內容的元素換行。nowrap | wrap | wrap-reverse;
order
: 可以直接指定一個數字來做排序的動作。flex-flow
:flex-direction
和flex-wrap
的縮寫。<'flex-direction'> || <'flex-wrap'>
REFERENCE : 深入解析 CSS Flexbox + 圖解:CSS Flex 屬性一點也不難
- 使用bootstrap
<div class="row">
+<div class="col">
- REFERENCE : BOOTSTRAP GRID SYSTEM
- bootstrap table : Table
- bootstap pagetation : Pagination
- bootstrap card : Card