去掉字体的加粗样式
时间: 2023-09-14 21:09:29 浏览: 207
您可以通过以下 CSS 样式来去掉 antd calendar 日历组件中的字体加粗样式:
```css
.ant-fullcalendar-header .ant-fullcalendar-year-select,
.ant-fullcalendar-header .ant-fullcalendar-month-select {
font-weight: normal;
}
```
这个样式会将年份和月份的字体加粗样式去掉,您可以根据需要进行调整。
相关问题
extjs font 去掉字体加粗
要去掉 ExtJS 中字体的加粗,可以通过以下两种方法实现:
1. 使用 CSS:
在应用程序的样式表中添加以下 CSS 代码:
```
.x-form-item-label {
font-weight: normal !important;
}
```
这会将表单项标签的字体加粗属性设置为正常(即去掉加粗效果)。
2. 使用 ExtJS 的 labelStyle 配置项:
在 ExtJS 表单项的配置中,可以使用 labelStyle 配置项来设置表单项标签的样式。例如:
```
{
xtype: 'textfield',
fieldLabel: 'My Label',
labelStyle: 'font-weight: normal;'
}
```
这会将该文本框的标签字体加粗属性设置为正常(即去掉加粗效果)。
button字体加粗
在Android中,Button控件默认使用了一个名为"bold"的字体样式(style),这个样式定义了一种加粗的字体。因此,无论你在Button中设置什么字体,它都会默认加粗显示。要去掉Button控件中的加粗效果,有两种方式可以实现。一种方式是在布局文件中为Button控件设置一个自定义的字体样式,这样可以在不影响Button控件其他样式的情况下取消掉加粗效果。另一种方式是在主题(theme)中设置Button控件的默认字体样式,这种方式会影响应用程序中所有Button控件的字体样式。
阅读全文