{display:flex; align-items:center; justify-content: end;} 调试时发现,在微信安卓端小程序和开发者工具中,justify-content属性设置为end时,效果和start相同,只有设置为flex-end才能实现从右向左的排列。 但在微信pc端小程序中,end属性生效了,显示为从右向左的排列 代码片段 {display:flex; align-items:cente...