/* 好友列表的CSS代码 */ .friend-list { list-style: none; padding: 0; margin: 0; } .friend { display: flex; align-items: center; margin-bottom: 10px; } .friend img { width: 50px; height: 50px; border-radius: 50%; margin-right: 10px; } .friend span { font-size: 18px; font-weight: bold; } .friend .status { width: 10px; height: 10px; border-radius: 50%; margin-left: auto; } .friend .status.online { background-color: green; } .friend .status.offline { background-color: red; }
为了实现好友列表,大家需要先创建一个HTML列表。接下来,大家可以使用CSS来改变大家列表中的元素外观和布局。例如,大家可以使用“list-style: none”属性来移除默认的列表符号,使用“display: flex”属性和“align-items: center”来使每项显示为一行,并使图像和文本垂直居中,使用“margin-bottom”属性来为每项添加下边距。
大家还可以使用CSS来装饰好友图像,如添加圆角等。大家可以使用“font-size”和“font-weight”属性来改变好友文字的大小和粗细程度。
最后,大家使用“margin-left: auto”属性来使状态部分始终靠右对齐。大家还为不同的状态使用“online”和“offline”类并设置对应的背景颜色。
通过以上CSS代码的调整,大家可以轻松地创建一个漂亮的好友列表。