value attribute 依不同 input types而異
For "button", "reset", and "submit" - it defines the text on the button
For "text", "password", and "hidden" - it defines the initial (default) value of the input field
For "checkbox", "radio", "image" - it defines the value associated with the input (this is also the value that is sent on submit)
Note: The value attribute cannot be used with .
input 和 textarea 會有border、背景為白色

點在輸入框時,框會有顏色

input:focus,textarea:focus {
outline: none;
}

![[Py 百日馬 Day 4-2] List 常見的使用方法](https://static.coderbridge.com/img/x94lexie/d09d9653e3c94de2a8a3bac867c734ca.jpg)
