Quote from
luishp on October 30, 2019, 1:24 pm
Hi @asmat,
That's because you have inline styles (the ones you set on the Properties panel) that take priority over the class.
Just use this code instead, to give priority to the class:
.myClass{
background-color:blue!important;
width:100px!important;
height:100px!important;
}
Hi @asmat,
That's because you have inline styles (the ones you set on the Properties panel) that take priority over the class.
Just use this code instead, to give priority to the class:
.myClass{
background-color:blue!important;
width:100px!important;
height:100px!important;
}
asmat has reacted to this post.