I have a class with the property display: flex
. When I go to Chrome dev tools, it shows display: block
, because of user-agent style sheet:
div { display: block; }
It seems I can't override it, even with !important
. I have no other CSS class on this element.
If I use Bootstrap 4 d-flex
, boom! It works.