~~~
@mixin fh {
float: left;
height: 100%;
}
// xs手机screen<767
@media (max-width: 767px) {
.hidden-xs {
display: none !important;
}
@for $i from 1 through 12 {
.col-xs-#{$i} {
width: 100% / 12 * $i;
@include fh;
}
}
}
// sm平板 768<screen<991
@media (min-width: 768px) and (max-width:991px) {
.hidden-sm {
display: none !important;
}
.container {
width: 750px;
}
@for $i from 1 through 12 {
.col-sm-#{$i} {
width: 100% / 12 * $i;
@include fh;
}
.col-sm-offset-#{$i}{
margin-left:100%/12*$i;
}
}
}
// md电脑 992<screen<1119
@media (min-width: 992px) and (max-width:1119px) {
.hidden-md {
display: none !important;
}
@for $i from 1 through 12 {
.col-md-#{$i} {
width: 100% / 12 * $i;
@include fh;
}
}
.container {
width: 970px;
}
}
// lg大屏电脑 screen>1200
@media (min-width: 1200px) {
.hidden-lg {
display: none !important;
}
.container {
width: 1170px;
}
@for $i from 1 through 12 {
.col-lg-#{$i} {
width: 100% / 12 * $i;
@include fh;
}
}
}
.container {
margin-left: auto;
margin-right: auto;
}
*{margin:0;padding:0}
.row::before{
content:"";
display: table;
}
.row::after{
content:"";
display: block;
clear: both;
}
div{
box-sizing: border-box;
}
~~~
- A.css工程化
- 1.课程介绍
- 2.css基础
- 2.1非布局样式
- 2.2使用自定义的字体
- 2.3行高
- 2.4背景
- 2.5边框
- 2.6overflow
- 2.7文字折行
- 2.8文字的装饰属性
- 2.9cssHack
- 2.10美化checkbox
- 2.11css面试
- 3.css进阶
- 3.1css布局
- 3.1.1table布局
- 3.1.2flexbox
- 3.1.3float
- 3.1.4inline-block布局
- 3.1.5响应式布局
- 3.1.6@media
- 3.1.7面试题
- 3.2css效果
- 3.2.1transform3d
- 3.3动画
- 4.预处理器
- 4.1less
- 4.2sass
- 第一节 变量和嵌套
- 第二节 @mixin,%placeholder
- 第三节 插值#{}
- 第四节 sass的控制命令
- 4.3css预处理器框架
- 4.4面试
- 5.bootstrap
- 示例
- bootstrap3模板
- 第1章 起步
- 1-1带悬浮高亮的表格
- 1-2图像
- 1-3图标
- 第2章 表单
- 2.1垂直表单
- 2.2水平表单
- 2.3内联表单
- 2.4表单控件input
- 2.4.1select下拉框
- 2.4.2textarea
- 2.4.3checkbox/radio
- 2.4.4check/radio水平排列
- 2.4.5按钮
- 2.4.6表单控件大小
- 2.4.7表单控件状态(验证)
- 2.4.8表单提示信息
- 2.4.9有图标的表单
- 第3章 响应式布局
- 3-1实现原理
- 3-2列偏移排序
- 第8章 JS组件
- 1.modal模态框
- 第4章 菜单,按钮,导航
- 5-1下来菜单
- 5-2下拉(分割线)
- 5-3下拉(菜单标题)
- 5-4dropup上弹菜单
- 5-5按钮(按钮组,工具栏)
- 5-6按钮(嵌套按钮组-下拉)
- 5-7按钮(垂直分组)
- 第5章 导航
- 6-1tabs
- 6-2垂直堆叠导航
- 6-3自适应导航
- 6-4下拉导航
- 6-5breadcrumb导航
- 第6章 导航条
- 6-1为导航加标题
- 6-2带表单的导航
- 6-3固定导航
- 6-4响应式导航
- 6.三大框架中的css
- 7.css3
- 第一章 3d效果
- B.进阶教程
- 1.flex教程
- 2.css-@import
- 3.grid布局
- 4.bootstrap栅格实现原理
- 5.选择器 倍数写法
- C.sass进阶教程
- 第一节 Sass的函数功能-字符串与数字函数
- 第二节 列表函数
- 第三节 Introspection函数
- 第四节 map
- 第五节 颜色函数