我正在尝试编辑我的输入日期,正好是日历和箭头的框。 这是我的代码:
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>
这是我要编辑的内容