yihong0618 / gitblog

People Die, but Long Live GitHub

Home Page:https://yihong0618.github.io/gitblog/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CSS存档

yihong0618 opened this issue · comments

  1. .xxx>li。>是子代选择符,它表示的是选择.xxx的子代li
  2. @media 如果文档宽度小于 300 像素则修改背景颜色(background-color):
 @media screen and (max-width: 300px) {
    body {
        background-color:lightblue;
    }
}