index.less 610 B

1234567891011121314151617181920212223242526272829
  1. .basic-editor-view{
  2. width: 100%;
  3. // 富文本中标签清除默认样式
  4. .w-e-text-container{
  5. height: 310px !important; // 于17行的多行文本一样搞
  6. }
  7. *{
  8. margin: 0;
  9. padding: 0
  10. }
  11. ul,ol{list-style:none;}
  12. /* table 样式 */
  13. table {
  14. width: 100%;
  15. border-top: 1px solid #ccc;
  16. border-left: 1px solid #ccc;
  17. }
  18. table td,
  19. table th {
  20. border-bottom: 1px solid #ccc;
  21. border-right: 1px solid #ccc;
  22. padding: 3px 5px;
  23. }
  24. table th {
  25. border-bottom: 2px solid #ccc;
  26. text-align: center;
  27. background-color: #f1f1f1;
  28. }
  29. }