gpt4 book ai didi

html - 如何在另一个上方使用 Font Awesome 图标

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

我是网络开发的新手。我有一张 table ,

enter image description here

现在我正在使用

<th scope="col">Total Resumes<i className="fa fa-fw fa-sort sort-icon" onClick={() => props.sortCountAndScoreAscending('resumeCount')}></i></th>

现在,我尝试使用两个 fa 图标,

<th scope="col">Technology
<i className="fa fa-sort-asc sort-icon" onClick={(event) => props.sortAscending(event, 'technology')}>
</i>
<i className="fa fa-sort-desc sort-icon" onClick={(event) => props.sortAscending(event, 'technology')}>
</i>
</th>

但它给了我

enter image description here

那么,如何获得第一张图片中的那个呢?

使用后

enter image description here

我做的是

<th>
<div className="d-inline-flex flex-column">
<i className="fa fa-angle-up sort-icon" aria-hidden="true" onClick={() => props.sortData(props.type)}></i>
<i className="fa fa-angle-down sort-icon" aria-hidden="true" onClick={() => props.sortData(props.type)}></i>
</div>
</th>

最佳答案

包装你的 <i> s 在一个 div 中,并为 div 设置以下样式:

display: inline-flex;
flex-direction: column;

关于html - 如何在另一个上方使用 Font Awesome 图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55015444/

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