Ger*_*era 8 css twitter-bootstrap
我想要得到这样的东西:
这是当前的结果:
我尝试过的:
.accordion-button::after {
flex-shrink: 0;
width: 1.25rem;
height: 1.25rem;
margin-left: auto;
content: "";
background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
background-repeat: no-repeat;
background-size: 1.25rem;
transition: transform .2s ease-in-out;
float: left;
}
Run Code Online (Sandbox Code Playgroud)
不幸的float: left;
是没有奏效。
有任何想法吗?
这是一个现场 JFIDDLE
更新:
如果我按照佐藤健的建议摆脱margin-left: auto
,图标会更接近文本,但它仍然会向右对齐。
her*_*zel 19
您可以使用 flexorder
属性
.accordion-button:after {
order: -1; //swap order
margin-left: 0;
margin-right:0.5em; // just extra space between text and icon
}
Run Code Online (Sandbox Code Playgroud)