console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Antd comment</title>
</head>
<body>
<div class="container">
<div class="comment">
<div class="comment-avatar">
<img
src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png"
alt="Han Solo"
height="32px"
width="32px"
/>
</div>
<div class="comment-content">
<div class="comment-content-author">
<span>Han Solo</span>
<span class="mute">几秒前</span>
</div>
<div class="comment-content-detail">
<p>
We supply a series of design principles, practical patterns and
high quality design resources (Sketch and Axure), to help people
create their product prototypes beautifully and efficiently.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
.comment {
max-width: 800px;
color: black;
border: 1px solid rgba(0, 0, 0, 0.25);
padding: 30px 50px;
border-radius: 20px;
margin: 0 auto;
}
.comment-avatar {
display: inline-block;
width: 32px;
vertical-align: top;
margin-right: 15px;
}
.mute {
color: rgba(0, 0, 0, 0.45);
font-size: 10px;
}
.comment-content {
display: inline-block;
max-width: 700px;
}
.comment-content-author {
font-size: 14px;
}