I have the following code:
<!DOCTYPE>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="container">
<p>With FC: <input type="date" name="BookingStart" class="form-control w-auto d-inline ms-5"></p>
<p>Without FC: <input type="date" name="BookingStart" class="w-auto d-inline ms-5"></p>
</div>
</body>
</html>
For some reason on Iphone the form-control
class on the date field breaks the output. This occurs on both Safari and Chrome so is clearly an Iphone issue.
Is this a bug or is it something I need to change?