Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 763 Bytes

CSS.md

File metadata and controls

42 lines (34 loc) · 763 Bytes
title date lastmod
CSS
2022-07-17 20:03:08 UTC
2022-07-17 20:03:25 UTC

CSS

CSS: 层叠样式表 Cascading style sheets

用来在网页中显示样式

写在哪里?
css写在style标签中, style标签一般写在head标签里面, title标签下面
怎么写?

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        p {
            color: aqua;
            font-size: 40px;
            background-color: cadetblue;
            width: 400px;
            height: 100px;
        }
    </style>
</head>

<body>
    <p>1234567</p>
</body>

</html>