租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
1.1 KiB

3 months ago
  1. @mixin toe {
  2. -webkit-box-orient: vertical;
  3. display: -webkit-box;
  4. text-overflow: ellipsis;
  5. overflow: hidden;
  6. }
  7. .se {
  8. &-ta {
  9. &-l {
  10. text-align: left;
  11. }
  12. &-c {
  13. text-align: center;
  14. }
  15. &-r {
  16. text-align: right;
  17. }
  18. }
  19. &-td {
  20. &-lt {
  21. text-decoration: line-through;
  22. }
  23. &-u {
  24. text-decoration: underline;
  25. }
  26. &-n {
  27. text-decoration: none;
  28. }
  29. }
  30. &-ti-em-2 {
  31. text-indent: 2em;
  32. }
  33. &-toe {
  34. @for $i from 0 through 10 {
  35. &-#{$i} {
  36. @include toe;
  37. -webkit-line-clamp: $i;
  38. lines: $i;
  39. }
  40. }
  41. }
  42. &-va {
  43. &-t {
  44. vertical-align: top;
  45. }
  46. &-m {
  47. vertical-align: middle;
  48. }
  49. &-b {
  50. vertical-align: bottom;
  51. }
  52. &-bl {
  53. vertical-align: baseline;
  54. }
  55. }
  56. &-ws {
  57. &-nw {
  58. white-space: nowrap;
  59. }
  60. &-nm {
  61. white-space: normal;
  62. }
  63. }
  64. &-wb {
  65. &-ba {
  66. word-break: break-all;
  67. }
  68. &-bw {
  69. word-break: break-word;
  70. }
  71. &-ka {
  72. word-break: keep-all;
  73. }
  74. }
  75. }