is it possible to have input type:"color" readonly?

html, input

Solution

`readonly` wouldn't really make sense for a colour picker.

I think you probably want `disabled`

<input type="color" disabled name="favcolor">

Problem

``` <input type="color" readonly name="favcolor"> ``` This doesn't work. Any other suggestions?

Original source