富文本渲染样式约定

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.richText {
min-height: 100px;
font-size: 15px;
line-height: 1.2;
padding-top: 20px;
text-align: left;

* {
max-width: 100%;
word-wrap: break-word !important;
}

img {
vertical-align: bottom;

&[data-src] {
width: 100%;
height: 300px;
}
}

pre {
white-space: pre-wrap !important;
*white-space: normal !important;
}
}