QPushButton css 设定背景图片大小
时间: 2024-05-05 20:16:45 浏览: 317
CSS控制图片背景自适应大小
4星 · 用户满意度95%
您可以使用以下CSS样式来设置QPushButton的背景图片大小:
```
QPushButton {
background-image: url(path/to/your/image.png);
background-repeat: no-repeat;
background-position: center;
background-size: 100px 50px; /* 设置宽度为100px,高度为50px */
}
```
请注意,背景图片必须使用`background-image`属性设置,并且必须使用`background-size`属性来指定大小。在这个例子中,我们使用了`background-repeat: no-repeat`来确保图片不会被重复显示。 `background-position: center`将图片放置在按钮的中心。
如果您想为所有按钮设置相同的背景图像大小,则可以使用以下CSS样式:
```
QPushButton {
background-repeat: no-repeat;
background-position: center;
background-size: 100px 50px; /* 设置宽度为100px,高度为50px */
}
```
这将为所有QPushButton元素设置相同的背景图片大小。
阅读全文