Skip to content

Instantly share code, notes, and snippets.

View panchihpeng's full-sized avatar
😇
Focusing

David panchihpeng

😇
Focusing
View GitHub Profile
@robbinhan
robbinhan / new_gist_file.css
Last active January 3, 2020 09:00
flex布局左边固定,右边自适应
.demo{
/*flex布局(作用于容器)*/
display: flex;
/*项目拉伸对齐,也就是所左边的高度为拉伸到和右边等高,默认是拉伸的*/
/*align-items: stretch;*/
}
.demo .left{
/*左边固定宽度,必须设置其最小宽度和最大宽度*/