gpt4 book ai didi

css - 在 css3 中创建这样的堆栈控件

转载 作者:行者123 更新时间:2023-11-28 17:39:10 30 4
gpt4 key购买 nike

如何创建像上面这样的堆栈控件?以下是我尝试过的方法,但是当我在任何一侧添加文本时,它都会中断。

  div#storage ul.storage li {
display: inline-block;
width: 22px;
height: 10px;
margin-right: 6px;
background: green;
}

div#storage ul.storage li:nth-child(n+3) {
background: lightgrey;
}

http://jsbin.com/tehijapi/15/edit

如何在 pure css3 中创建这样的堆栈。

最佳答案

你可以通过使用伪元素来做到这一点(我假设你的内容是静态的)

  ul.storage:before{
content: 'Storage';
}
ul.storage:after{
content: '25% Usage';
}

JS Bin Sample | JS Bin Sample with JS assigned data (使用 HTML5 数据属性)

关于css - 在 css3 中创建这样的堆栈控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24474168/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com