html中 如何在<font>中设置字体样式(粗体斜体等)

发布网友 发布时间:2022-04-19 16:11

我来回答

1个回答

热心网友 时间:2023-10-25 10:23

        字体加粗            * {            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;        }        
    

用<b>加粗字体:加粗

    
    

用<strong>加粗字体:加粗

    
    用CSS font-weight 加粗 normal(400)bold(700)     , bolderlighter

    
    

用<i>斜体字体:斜体

    
    

用font-style: italic; 斜体字体:斜体

    
    

用<i>斜体字体:斜体

可以自行试一下!!!效果图
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com