主頁
HTML
HTML 輸入型別
Tryit: HTML 輸入顏色
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題, 深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>Show a Color Picker</h2> <p>The <strong>input type="color"</strong> is used for input fields that should contain a color.</p> <form action="/action_page.php"> <label for="favcolor">Select your favorite color:</label> <input type="color" id="favcolor" name="favcolor" value="#ff0000"> <input type="submit" value="Submit"> </form> <p><b>Note:</b> type="color" is not supported in Internet Explorer 11.</p> </body> </html>