微信小程序之侧栏分类 —— 微信小程序实战商城系列

小程序 0

wxss:

page{

background: #f5f5f5;

}

/总体主盒子/

.container {

position: relative;

width: 100%;

height: 100%;

background-color: #fff;

color: #939393;

}

/左侧栏主盒子/

.nav_left{

/设置行内块级元素(没使用定位)/

display: inline-block;

width: 25%;

height: 100%;

/主盒子设置背景色为灰色/

background: #f5f5f5;

text-align: center;

}

/左侧栏list的item/

.nav_left .nav_left_items{

/每个高30px/

height: 30px;

/垂直居中/

line-height: 30px;

/再设上下padding增加高度,总高42px/

padding: 6px 0;

/只设下边线/

border-bottom: 1px solid #dedede;

/文字14px/

font-size: 14px;

}

/左侧栏list的item被选中时/

.nav_left .nav_left_it

也许您对下面的内容还感兴趣: