gpt4 book ai didi

css - 如何使用 css 在 Font Awesome 图标中创建不同 Angular 边框?

转载 作者:太空宇宙 更新时间:2023-11-04 01:21:49 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





CSS triangle custom border color

(5 个回答)



Html/Css Triangle with pseudo elements

(1 个回答)


4年前关闭。




我想制作一个 Font Awesome 图标的边框,就像这样。如何使用css?
Screenshot

最佳答案

见下文。希望这可以帮助。

.icon-container {
background: darkgreen;
color: white;
width: 3rem;
height: 3rem;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}

.icon-container::after {
content: "";
background: darkgreen;
width: 1rem;
height: 1rem;
position: absolute;
bottom: -5px;
left: calc( 50% - 0.5rem);
transform: rotate(45deg);
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<div class="icon-container">
<i class="fa fa-car fa-2x" aria-hidden="true"></i>
</div>

关于css - 如何使用 css 在 Font Awesome 图标中创建不同 Angular 边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48900037/

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