09 字体属性-颜色斜体粗细

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style type="text/css">
        body{
            /*颜色设置*/
            /*rgb是red,green,blue三种颜色的意思,三种三色混合为白色*/
            /*color: rgb(255,255,255);*/

            /*a为透明度范围为0-1数值越少越透明*/
            /*color:rgba(255,255,0,0.5);*/

            color: #E14D1DFF

            /*斜体设置*/
            font-style:italic;

            /*粗细设置采用数值400是默认数值 最小100 最大是900 normal*/
            font-weight: 900;
        }
    </style>
</head>
<body>
    walter
</body>
</html>
posted @ 2020-12-19 17:41  *!Walter!*  阅读(137)  评论(0编辑  收藏  举报