1. "display flex": {
    2. "prefix": "j:ly",
    3. "description": "Flex 布局",
    4. "body": [
    5. "display: flex;",
    6. ],
    7. },
    8. "flex row center": {
    9. "prefix": "j:ly-c",
    10. "description": "水平居中",
    11. "body": [
    12. "justify-content: center;",
    13. ],
    14. },
    15. "flex row justify": {
    16. "prefix": "j:ly-j",
    17. "description": "水平两端对齐",
    18. "body": [
    19. "justify-content: space-between;",
    20. ],
    21. },
    22. "flex column center": {
    23. "prefix": "j:ly-m",
    24. "description": "垂直居中",
    25. "body": [
    26. "align-items: center;",
    27. ]
    28. },
    29. "flex row multi": {
    30. "prefix": "j:ly-multi",
    31. "description": "多行",
    32. "body": [
    33. "flex-wrap: wrap;",
    34. ],
    35. }