如何使用QSS更改QLineEdit字体大小?

时间:2015-01-17 02:21:15

标签: python qt pyqt font-size qtstylesheets

下面的代码会创建一个应用了QSS样式表的QLineEdit()。 如果您展示如何使用QSS更改QLineEdit的字体大小和字体颜色,我将不胜感激。我试过了font-size: 12;。但它不起作用。

enter image description here

from PyQt4.QtCore import *
from PyQt4.QtGui import *

app=QApplication([])

bgColor='#262626'
style="""QLineEdit{{ color: #EBEBEB; border: 0px solid black; background-color: {0}; color: #EBEBEB }} QLineEdit:hover{{ border: 1px solid #ffa02f;}}""".format(bgColor) 

lineEdit=QLineEdit()
lineEdit.setText('My Line Edit')
lineEdit.setStyleSheet(style)

lineEdit.show()
sys.exit(app.exec_())

1 个答案:

答案 0 :(得分:1)

使用单位指定字体大小;类似于pxpt

font-size: 30px;