如何使用CSS编辑输入类型数据

时间:2016-05-26 13:41:38

标签: javascript jquery html css input

我正在尝试编辑我的输入日期,正好是日历和箭头的框。 这是我的代码:

input[type="date"] {
  color: #888;
  background-color: #eee;
  border: 2px solid #ccc;
  text-align: center;
  border-radius: 10px;
  width: 100%;
  font-size: 14px;
  font-family: 'sans-serif';
}
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Date</title>
</head>
<body>
<input type="date">
</body>
</html>

这是我要编辑的内容

enter image description here

1 个答案:

答案 0 :(得分:1)

不可能。浏览器会创建一个您无法设置样式的shadow-root日历。

您添加了标记,因此可能看起来像jQuery Datepicker