I write the css for my demo application:
QPushButton
{
font-size:8px;
color:#333333;
border: 1px solid red;
background-color: green;
}
QPushButton:hover
{
font:bold "Arial";
font-size:20px;
color:blue;
border: 1px solid green;
background-color: red;
}
QPushButton
{
font-size:8px;
color:#333333;
border: 1px solid red;
background-color: green;
}
QPushButton:hover
{
font:bold "Arial";
font-size:20px;
color:blue;
border: 1px solid green;
background-color: red;
}
To copy to clipboard, switch view to plain text mode
but the font size never changed when hover on my buttons. what's the reason?
Bookmarks