#allday {
width: 180px;
height: 20px;
margin-top: 2px !important;
margin-right: 0px;
padding: 0px;
-webkit-appearance: menulist;
box-sizing: border-box;
-webkit-box-align: center;
border: 1px solid;
border-image: initial;
white-space: pre;
-webkit-rtl-ordering: logical;
color: black;
background-color: white;
cursor: default;
}
I inspected the element in both browsers but I’m not really seeing where the discrepancy is. Has anyone been through this before with the select tag?
Without being able to see a fiddle or an example this is a wild guess, but I’ve had some issues before with different browsers showing different heights/padding/margins and adding
display:blockhas sometimes helped… but not all of the time.