英文:
Make Text Bolder
问题
.txt {
font-weight: bolder;
justify-content: left;
text-align: left;
margin-top: 100px;
/* font-family: 'Redwinger Personal Use', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
*/
color: rgb(0, 0, 0);
margin-bottom: 750px;
margin-left: 25px;
}
我尝试了font-weight: "bolder"
属性,但我希望它更加粗体。有什么方法吗?
英文:
It doesn't seem I have a problem but I need to make this more bold
.txt {
font-weight: bolder;
justify-content: left;
text-align: left;
margin-top: 100px;
/* font-family: 'Redwinger Personal Use', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
*/
color: rgb(0, 0, 0);
margin-bottom: 750px;
margin-left: 25px;
}
I tried the property font-weight:"bolder"
but I want it more bold. Is there any way?
答案1
得分: 0
.font-weight: 900;
justify-content: left;
text-align: left;
margin-top: 100px;
color: rgb(0, 0, 0);
margin-bottom: 750px;
margin-left: 25px;
英文:
.txt {
font-weight: 900;
justify-content: left;
text-align: left;
margin-top: 100px;
color: rgb(0, 0, 0);
margin-bottom: 750px;
margin-left: 25px;
}
You can use font-weight
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论