# HTML/CSS 個人筆記 ## HTML ``` &nbsp; ``` 半形的不換行空格,空白鍵(space key)產生的空格 ``` &ensp; ``` 半形的空格,特性為寬度是 1/2 個中文字寬度 ``` &emsp; ``` 全形的空格,特性為寬度是 1 個中文字寬度 標籤學習 https://www.fooish.com/html/table.html # 表格 ## label ```htmlembedded= <label for="emailadd">Email address: </label> <input type="email" name="emailadd" id="emailadd"> ``` >![](https://i.imgur.com/9lUZOeh.png =320x) ```htmlembedded= <label>Do you like peas? <input type="checkbox" name="peas"> </label> ``` >![](https://i.imgur.com/smPvkBn.png =160x) ## fieldset, legend ```htmlembedded= <fieldset> <legend>Fruit juice size</legend> <p> <input type="radio" name="size" id="size_1" value="small"> <label for="size_1">Small</label> </p> </fieldset> ``` >![](https://i.imgur.com/6S68hyN.png =320x) ## CSS (Cascading style sheets