如何使用 CSS 样式化标题?


要使用 CSS 样式化标题,我们可以使用各种CSS属性使其看起来更具吸引力。在本文中,我们将学习和理解如何使用不同的 CSS 属性来样式化标题。

使用 CSS 样式化标题

示例

以下是实现上述步骤的完整示例代码。

<!DOCTYPE html>
<html>
<head>
    <title>
        To style a header with CSS
    </title>
    <style>
        body {
            margin: 10px;
        }
        .header {
            padding: 30px;
            background-color: bisque;
        }
        .test {
            padding: 30px;
            background-color: #04af2f;
        }
        #head1 {
            font-style: oblique;
            text-align: center;
        }
        .head {
            font-family: "Segoe UI", Tahoma,
                Geneva, Verdana,
                sans-serif;
            text-align: center;
            color: white;
        }
    </style>
</head>
<body>
    <div class="header">
        <h1 id="head1">
            Styling header with CSS
        </h1>
        <p>
            For this header, we have used 
            CSS font-style and text-align
            property to style the header.
        </p>
    </div>
    <div class="test">
        <h1 class="head">
            Welcome to Tutorials Point.
        </h1>
        <p>
            For this header, we have used 
            CSS font-family and color
            property to style the header.
        </p>
    </div>
</body>
</html>

结论

在本文中,我们了解了如何使用 CSS 样式化标题。我们使用了 font-stylefont-familycolortext-alignbackground-color 来样式化标题。

更新于: 2024年7月23日

9K+ 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告