やあみんな!私はCSSの手を必要としています。
いずれかがクリックされたときにすべてのアイテムに影響を与えたいと思います。
#scrollBox #content .item:active (?)
{
width: 0px;
}
#scrollBox #content .item
{
width : 100%;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
-ms-transition: all 1s ease-out;
transition: all 1s ease-out;
}
私が欲しいものを得るために (?) を置き換えることができるものがあるかどうかわかりませんか?
ご協力いただきありがとうございます !