|
发表于 2019-10-28 22:47:52
|
显示全部楼层
- <!doctype html>
- <html>
- <meta charset="utf-8">
- <head>
- <title>选择器</title>
- <style type="text/css">
- h1 {
- font-size:33px;
- }
- .red {
- color:#e74c3c;
- }
- header > h1 {
- background-color: #34495e;
- }
- .blue {
- color:#2980b9;
- }
- aside > h1 {
- background-color:#95a5a6;
- }
- #m-title {
- background: #2ecc71;
- }
- #s-title {
- background: #1abc9c;
- }
- </style>
- </head>
- <body>
- <header>
- <h1 class="red" id="title">让编程改变世界</h1>
- </header>
- <section>
- <h1 class="blue" id="m-title">Fishc</h1>
- <article>
- <h1 class="red" id="s-title">不二如是</h1>
- </article>
- </section>
- <aside>
- <h1 class="blue" id="a-title">小甲鱼</h1>
- </aside>
- </body>
- </html>
复制代码 |
|