【发布时间】:2021-09-02 14:19:32
【问题描述】:
【问题讨论】:
【问题讨论】:
你可以试试这个代码:-
这是我的 CSS:
.photos { display: inline-block; position: relative; width: 200px; height: 200px; overflow: hidden; border-radius: 50%; }
这是我的 HTML:
<div class="photos"> <a href="Github Profile url"> <img href="Github profile image source"> </a> <div class="photos"> <a href="Github Profile url"> <img href="Github profile image soure"> </a> <div class="photos"> <a href="Github Profile url"> <img href="Github profile image source"> </a> <div class="photos"> <a href="Github Profile url"> <img href="Github profile image source"> </a> </div>
为了显示“作者”一词,您可以使用
##作者
【讨论】:
一种快速的方法是使用contributors-img 并在您的降价中使用以下内容:
<a href="https://github.com/OWNER/REPO/graphs/contributors">
<img src="https://contrib.rocks/image?repo=OWNER/REPO" />
</a>
【讨论】: