A while back, I wrote about how a majority of the bugs I’ve run into while building Kelp UI have been Safari-related. Today, I wanted to share another one, and how I fixed it: temporal inputs. Let’s dig in! What are temporal inputs? Temporal inputs is the fancy name for browser-native date-and-time-picker input types, like [type="date"] and [type="time"]. <label for="start">When will you arrive?</label> <input type="date" id="start" name="start"> When will you arrive?