首页 > 其他分享 >标签 样式

标签 样式

时间:2023-02-14 14:23:18浏览次数:37  
标签:body info 样式 标签 height user margin card

样式一

效果图:
image

<!DOCTYPE html>
<html lang="en">

<head>
	<meta charset="UTF-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Document</title>
	<link rel="stylesheet" href="/first/css/style.css" type="text/css">
	<link rel="stylesheet" href="/first/css/style2.css" type="text/css">
</head>

<body>
	<div class="user-card">
		<div class="user-card-head">asked Feb 9, 2019 at 18:18</div>
		<div class="user-card-body">
			<div class="user-card-body-photo">
				<a href="#" target="_blank">
					<img src="/first/img/logo.jpg" alt="照片被删除">
				</a>
			</div>
			<div class="user-card-body-info">
				<div class="user-card-body-info-username">
					<a href="#">zzh</a>
				</div>
				<div class="user-card-body-info-reputation">
					<span style="color: #6a737c; font-weight: bold;">1,024</span>
					<div class="user-card-body-info-item" style="background-color: #ffcc01"></div>
					3
					<div class="user-card-body-info-item" style="background-color: #B4B8BC""></div>
					14
					<div class=" user-card-body-info-item" style="background-color: #D1A684"></div>
					28
				</div>
			</div>
		</div>
	</div>

</body>

</html>

.user-card {
    background-color: #d9eaf7;
    width: 200px;
    height: 67.69px;
    margin: 100px auto;
    /* 外边距 */
    padding: 5px 6px 7px 7px;
    /* 内边距 */
    box-sizing: border-box;
    /* 不会因为内边距而整体效果变大 */
}

.user-card-head {
    margin: 1px 0px 4px 0px;
    color: #6a737c;
    font-size: 12px;
}

.user-card-body-photo img {
    width: 32px;
    height: 32px;
    border-radius: 3px;
}

/* .user-card-body-photo>img {
    width: 32px;
    height: 32px;
} */



.user-card-body-photo {
    float: left;
}

.user-card-body-info {
    float: left;
    margin-left: 8px;
}

.user-card-body-info-username {
    height: 14px;
    line-height: 14px;
    margin-bottom: 2px;
}

.user-card-body-info-username>a {
    font-size: 13px;
    color: #0074cc;
    text-decoration: none;
}

.user-card-body-info-reputation {
    font-size: 12px;
    color: #838c95;
    height: 16px;
    line-height: 16px;
}

.user-card-body-info-item {
    height: 6px;
    width: 6px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 3px 0 2px;
    position: relative;
    top: -2px;
    /* float: left; */
}

标签:body,info,样式,标签,height,user,margin,card
From: https://www.cnblogs.com/zzh1206/p/17119434.html

相关文章