0

I have a Vaadin 14 app which creates an HTML page that contains multiple "

Screenshot from Chrome shows the relevant page section: enter image description here

I've tried this with and without the "::before":

.vaadin-button-container ::before {
    justify-content: left !important;
}

I have also tried

.vaadin-button-container::before {
    justify-content: left !important;
}

According to Chrome dev mode this style is never applied to the vaadin-button-container.

This css selector stuff is driving me nuts!

3
  • Could you please check THIS? Commented May 20, 2020 at 2:23
  • 2
    Remove the space before ::before Commented May 20, 2020 at 2:24
  • Yes I have tried it without a space before "::before" and that has no effect. Commented May 20, 2020 at 17:45

1 Answer 1

1

This should work..

.vaadin-button-container::before { 
justify-content: flex-start; }

Please, remove space and try..

Sign up to request clarification or add additional context in comments.

1 Comment

I have tried without the space before "::before" and that has no effect.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.