8-29学习笔记

1-列偏移 col-md-offset-2
2-多写注释
3-  text-align:center;
4-  before after选择器 
 在元素的内容之前/之后插入新内容。
5-优先级
6-媒体查询 
如果文档宽度小于 300 像素则修改背景颜色(background-color):
@media screen and (max-width: 300px) {
    body {
        background-color:lightblue;
    }
}
7-右击检查
8-吸顶效果  
  + data-spy="affix"
  + data-offset-top="出现位置"
  + data-offset-bottom="消失位置"
9-模态框 弹窗
10-header body footer
11-input输入框要匹配label
12-解决问题 
先想出一个粗略方案,然后分解步骤,慢慢细化。
13-移动端轮播图判断滑动方向
14-先看有没有报错
15-less 预处理CSS语言
16-node.js
 

猜你喜欢

转载自blog.csdn.net/qq_38361905/article/details/82186853