我不是真正的前端人员,但我正在努力学习。我从我的设计师那里得到了这个 psd,我想知道为菜单项前面的这个小选项卡编写样式和标记的最佳方式是什么。
我已经开始使用 bootstrap 构建其他所有内容,但这是迄今为止我所拥有的菜单。
再次感谢你的帮助
.sideMenu {
width: 230px;
padding: 0;
margin: 0;
list-style: none;
font-size: 13px;
}
.sideMenu > li {
overflow: hidden;
height: 50px;
line-height: 50px;
text-indent: 25px;
position: relative;
z-index: 2;
border-top: 1px solid #ffffff;
border-bottom: 1px solid #E1E6EF;
-webkit-backface-visibility: hidden;
/* Chrome transition flicker & double border fix */
-webkit-transition: height .2s ease;
-moz-transition: height .2s ease;
transition: height .2s ease;
}
.sideMenu > li.open {
background-color: #F5F5F5;
position: relative;
-webkit-backface-visibility: hidden;
/* Chrome transition flicker & double border fix */
-webkit-transition: height .4s ease;
-moz-transition: height .4s ease;
transition: height .4s ease;
}
.sideMenu > li.active {
background-color: #E5E9EA;
color: #6E787E;
font-weight: bold;
border-top: 1px solid #E1E6EF;
}
.sideMenu > li > a {
display: block;
height: 50px;
}