css布局实现用户社交信息卡片效果代码

代码语言:html

所属分类:布局界面

代码描述:css布局实现用户社交信息卡片效果代码

代码标签: 用户 社交 信息 卡片 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/all.5.11.2.css">
	
<style>
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    font-family: sans-serif;
    background: url(//repo.bfw.wiki/bfwrepo/image/605ad0acca3fe.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card{
    position: relative;
    overflow: hidden;
    text-align: center;
    box.........完整代码请登录后点击上方下载按钮下载查看

网友评论0