Recently, I encountered a CSS issue where setting the min-width
property worked in Firefox but broke in Webkit. After experimenting with the Chrome inspector, I found that using the property -webkit-min-logical-width
with a different value than min-width
resolved the layout problems in Chrome! Does anyone know what exactly this property is meant to do? I searched for it online, even on the Webkit website, but couldn't find any information.
UPDATE You can see a live example of this behavior in action in this fiddle. Check it out in both Chrome and Firefox to observe the difference. It seems like it might be an override for min-width?