Hi guys! I want to write a title text using a Label.
For example, in my styles.css I have this code:
vaadin-label.title {
background-color: blue;
}
And my java code:
Label label = new Label(“This is a title”);
label.addClassName(“title”);
This code not working, it doesn’t do anything. I think vaadin-label maybe doesn’t exist. Does anyone know how to do this? How can I do to set a css style for the label?..