為什么這條消息的列表在管理面板中是水平的,而在其他頁面中是垂直的?
.user-list{
display:inline;
}
.users header,
.users-list a{
display: flex;
align-items: center;
padding-bottom: 20px;
border-bottom: 1px solid #e6e6e6;
justify-content: space-between;
}
默認情況下,彈性盒是行。要使它們顯示為列,請添加屬性flex-direction: column或flex-direction: column-reverse。