text和textarea中都是#ccc为什么颜色不同
input[type="text"]:read-only{
border-color: #ccc;
}
textarea :read-only {
border: 1px solid #ccc;
height: 50px;
resize: none;
background: #eee;
}
这里的text和textarea设置的border颜色都是#ccc为什么显示不同
input[type="text"]:read-only{
border-color: #ccc;
}
textarea :read-only {
border: 1px solid #ccc;
height: 50px;
resize: none;
background: #eee;
}
这里的text和textarea设置的border颜色都是#ccc为什么显示不同
2019-08-07
举报