html行内标签文本右对齐属性,如何使用display:flex在HTML元素中使文本右对齐?...
你快到了.您只需要添加justify-content属性.在CSS中添加一行代码:.inner1 {display: flex;width: 5em;/* text-align: right; REMOVE; not necessary */justify-content: flex-end; /* NEW */}这是一个稍微增强的演示,使该功能更加引人注目:justify-contentThe ...