前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >一个简易的友链样式

一个简易的友链样式

作者头像
蒟蒻
发布2023-11-16 20:14:02
1310
发布2023-11-16 20:14:02
举报
文章被收录于专栏:小站小站

CSS样式:

代码语言:javascript
复制
.friends {
    display: flex;
    flex-wrap: wrap;
}
.friends .a-friend {
    display: flex;
    margin: 10px 10px 0 0;
    text-decoration: none;
    font-weight: 300;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.friends .a-friend:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.friends .a-friend:active {
    transform: scale(0.95);
}
.friends .a-friend .blog-avatar {
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.friends .a-friend .text-container {
    margin-left: 10px;
}
.friends .a-friend .text-container .name {
    font-size: 14px;
}
.friends .a-friend .text-container .description {
    font-size: 12px;
    margin-top: 5px;
}

HTML代码:

代码语言:javascript
复制
<div class="friends">
    <a class="a-friend" target="_blank" style="background-color:white;color:black" href="http://blog.hicasper.com/">
        <img class="blog-avatar" src="https://cn.gravatar.com/avatar/b9fa18886cd3acb13fcd8ebfb6140c44?s=200">
        <div class="text-container">
            <div class="name">hiCasper</div>
            <div class="description">This is Description</div>
        </div>
    </a>
</div>

样式详见 友链页面

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018-7-13 1,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档