font设置字体加粗(font creator如何让字体加粗)

本文目录
font creator如何让字体加粗
工具菜单下选择“字形转换”会弹出一个面板:“范围”可以是你选择的一个或一组字,也可以直接选“所有”。要加粗字体,在“可用特征”下面打开“特效”(Effects)前面的小加号;选中“加粗”(Bold)然后点中间的向右箭头,把加粗(Bold)调到右侧脚本框内;面板下面可以做加粗效果的微调,也可以一切保持默认。之后点击确定就可以了。
建议使用前先备份你的字体,因为这个操作是不可逆的,而且有的字体加粗微调的不好会出错误。
html中 如何在中设置字体样式(粗体斜体等)
《!DOCTYPE html》
《html lang="zh"》
《head》
《meta charset="UTF-8"》
《title》字体加粗《/title》
《style type="text/css"》
* {
margin: 0;
padding: 0;
}
p {
text-align: center;
margin: 16px 0;
}
em {
/* 去掉字体样式 */
font-style: normal;
}
p.strong :nth-child(1) {
font-weight: normal;
}
p.strong :nth-child(2) {
font-weight: bold;
}
p.strong :nth-child(3) {
font-weight: bolder;
}
p.strong :nth-child(4) {
font-weight: lighter;
}
p.strong :nth-child(5) {
/* 等同于bold*/
font-weight: 700;
}
p 》 em:only-child{
font-style: italic;
}
《/style》
《/head》
《body》
《hr》
《p》用《b》加粗字体:《b》加粗《/b》《/p》
《hr》
《p》用《strong》加粗字体:《strong》加粗《/strong》《/p》
《hr》
《p class="strong"》用CSS font-weight 加粗 《em》normal(400)《/em》, 《em》bold(700)《/em》
, 《em》bolder《/em》, 《em》lighter《/em》《/p》
《hr》
《p》用《i》斜体字体:《i》斜体《/i》《/p》
《hr》
《p》用font-style: italic; 斜体字体:《em》斜体《/em》《/p》
《hr》
《p》用《i》斜体字体:《em》斜体《/em》《/p》
《/body》
《/html》
可以自行试一下!!!
效果图

更多文章:
下载mysql的步骤(win10安装mysql的步骤和方法)
2026年9月7日 04:10
checked in(check in和check out的区别)
2026年9月7日 01:20
java经典上机编程题(java上机题 请问这道题应该怎么写)
2026年9月7日 01:10
影视剧中有哪些剧情颠覆了你的三观?金庸的武侠小说《白马啸西风》为什么没有被拍成电影或者电视剧
2026年9月7日 00:30
mysql varchar和char的区别(mysql中char、varchar、nvarchar区别)
2026年9月7日 00:10
linux命令的选项和参数(linux为什么要有参数和选项)
2026年9月6日 20:20





