I need to change display to flex
I am trying to overwrite the inline style highlighted in the picture. I have tried using CSS !important as follows:
1)
group.buttonizer-group-0-0-1 [style]{
display:flex !important;
}
group.buttonizer-group-0-0-1 div[style]{ display:flex !important; }
group.buttonizer-group-0-0-1 { display:flex !important; }
Unfortunatly, none of the above options have worked. Is there any other CSS or JS code snippet I could try to change display:block to display:flex for this element?
Read more here: https://stackoverflow.com/questions/65722881/overwriting-inline-css-using-important-does-not-work
Content Attribution
This content was originally published by Sven at Recent Questions - Stack Overflow, and is syndicated here via their RSS feed. You can read the original post over there.