scss CSS只有手风琴
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss CSS只有手风琴相关的知识,希望对你有一定的参考价值。
.accordion
input.accordion_toggle(id='item01', type="checkbox")
label.accordion_label(for='item01') Item Label
.accordion_body
p body
.accordion_toggle {
display: none;
}
.accordion_label {
.accordion_toggle:checked ~ & {
font-weight: bold;
}
}
.accordion_body {
* {
opacity: 0;
overflow: hidden;
padding: 0;
line-height: 0;
transition: opacity .2s ease-out, overflow .2s ease, padding .2s ease-out, line-height .2s ease-out;
}
.accordion_toggle:checked ~ & {
* {
opacity: initial;
overflow: initial;
padding: initial;
line-height: 1.5;
}
}
}
以上是关于scss CSS只有手风琴的主要内容,如果未能解决你的问题,请参考以下文章
jQuery UI:DatePicker 只有 CSS?
scss 顶级手风琴造型
Webpack 为啥只有 scss 有效,而 css 无效?
scss 响应式页脚(手机上的手风琴)catergoy与子猫下拉
scss CSS只有汉堡包
css scss:IE11只有选择器hack