Ask Your Question

Revision history [back]

You can use the CSS property width: 100% to make the HTML date popup box fill the entire width of the input field. Here is an example:

input[type="date"] {
  width: 100%;
}

This will set the width of all date inputs to 100% of their container.