Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div>date</div>
<input type="date" value="1996-12-19" class="blocky">
<br>
<input type="date" value="1996-12-19">
<div>time</div>
<input type="time" value="17:39:57" class="blocky">
<br>
<input type="time" value="17:39:57">
<div>datetime-local</div>
<input type="datetime-local" value="1996-12-19T16:39:57" class="blocky">
<br>
<input type="datetime-local" value="1996-12-19T16:39:57">
<div>month</div>
<input type="month" value="1996-12" class="blocky">
<br>
<input type="month" value="1996-12">
  
</body>
</html>
 
input[type="date"].blocky,
input[type="time"].blocky,
input[type="datetime-local"].blocky,
input[type="month"].blocky {
  display: block;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  height: 34px;
  line-height: 20px;  
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
cvrebertpro
0viewers