qt qtextbrowser样式表
时间: 2023-10-28 09:33:40 浏览: 565
以下是一些常用的 QTextBrowser 样式表属性:
- color:设置字体颜色
- background-color:设置背景颜色
- font-size:设置字体大小
- font-family:设置字体类型
- font-weight:设置字体粗细
- text-align:设置文本对齐方式(left、right、center)
- text-decoration:设置文本装饰(underline、line-through、none)
- margin:设置边距(上、右、下、左)
- padding:设置内边距(上、右、下、左)
- border:设置边框(宽度、样式、颜色)
- border-radius:设置边框圆角
- background-image:设置背景图片
- background-repeat:设置背景图片重复方式(repeat、no-repeat)
- background-position:设置背景图片位置
示例:
QTextBrowser {
color: #333;
background-color: #f5f5f5;
font-size: 16px;
font-family: Arial, sans-serif;
font-weight: normal;
text-align: left;
text-decoration: none;
margin: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-image: url(images/bg.jpg);
background-repeat: no-repeat;
background-position: center center;
}
阅读全文