Skip to content

Commit

Permalink
update: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
qianguyihao committed May 16, 2021
1 parent a0dd8f9 commit d59af98
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion 03-CSS进阶/CSS开发积累.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ CSS的逗号一般写在()里。**不同属性值之间,用的是空格**,

### 2019-11-01

价格中的羊角符号,有半角和全角之分:
人民币价格中的羊角符号,有半角和全角之分:

- ¥半角

Expand Down Expand Up @@ -130,3 +130,15 @@ CSS的逗号一般写在()里。**不同属性值之间,用的是空格**,
- [html设置局部区域上下滚动,不显示滚动条](https://blog.csdn.net/weixin_42157001/article/details/90176510)


### 2021-05-06-设置页面的宽高,撑满屏幕

一般来说,我们在开发一个页面的时候,默认是希望这个页面的宽高能够撑满屏幕的。代码可以这样写:

```css
.app {
width: 100vw;
min-height: 100vh;
}
```

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d59af98

Please sign in to comment.