答案 0 :(得分:1)
似乎你已经覆盖了一些css风格。它默认工作:
input[type="color"] {
width: 300px;
height: 50px;
}
<input type="color" value="#ff0000">
答案 1 :(得分:0)
这是一款适用于Chrome,Firefox的解决方案。我还没有在其他浏览器上测试它。浏览器默认输入上限可以覆盖此规则。
input[type="color"]{
display: block;
height: 50px;
width: 300px;
}
&#13;
<input type="color" />
&#13;