In the past, I saw the next css and I was thinking if there is some actual difference between
min-width: 90px; max-width: 90px;
and
width: 90px;
using width will simply specify fixed width over the element without paying attention to its content (so you can have overflow) :
width
div { width: 80px; border:2px solid red; }
<div> <img src="https://lorempixel.com/200/100/" /> </div>
2.1m questions
2.1m answers
60 comments
57.0k users