如何删除大写文本的第一个单词
How to remove uppercase text first word
我想问
如何删除大写文本的第一个单词
我试过这样的:
text-transform: none !important;
text-decoration : none !important;
不工作
我正在使用 blogspot 主题领先的珊瑚主题:
这是我的示例网站:https://blogkubagus123.blogspot.com/2020/02/testing-post.html
像这样的截图示例:
我想更改普通文本(如果我创建的是粗体,它们是粗体,如果我创建的是 h1,它们是文本 h1,等等)
如何删除先生?
希望对您有所帮助。
body.item-view .Blog .post-body::first-letter{font-size:16px;}
检查您的页面后,我发现 body.item-view .Blog .post-body::first-letter
的样式如下
float:left;
font-size:80px;
font-weight:600;
line-height:1;
margin-right:16px;
所以要取消您需要:
float:none;
font-size:inherit;
font-weight:inherit;
line-height:1;
margin-right:0;
选择器的所有这些 body.item-view .Blog .post-body::first-letter
(除非使用 !important
,否则不会覆盖模板样式)
我想问
如何删除大写文本的第一个单词
我试过这样的:
text-transform: none !important;
text-decoration : none !important;
不工作
我正在使用 blogspot 主题领先的珊瑚主题:
这是我的示例网站:https://blogkubagus123.blogspot.com/2020/02/testing-post.html
像这样的截图示例:
我想更改普通文本(如果我创建的是粗体,它们是粗体,如果我创建的是 h1,它们是文本 h1,等等)
如何删除先生?
希望对您有所帮助。
body.item-view .Blog .post-body::first-letter{font-size:16px;}
检查您的页面后,我发现 body.item-view .Blog .post-body::first-letter
float:left;
font-size:80px;
font-weight:600;
line-height:1;
margin-right:16px;
所以要取消您需要:
float:none;
font-size:inherit;
font-weight:inherit;
line-height:1;
margin-right:0;
选择器的所有这些 body.item-view .Blog .post-body::first-letter
(除非使用 !important
,否则不会覆盖模板样式)