always subscript and superscript
always subscript and superscript
@f630088281
what does that mean?
@wasabeef it means that you can not turn off subscript and superscript modes
for example, when you press bold, it turn the bold on if it is off, and off if it is on. However, both subscript and superscript do not behave like that. If you press superscript on an already superscript text, it remains superscript, and the same goes for subscript.
@louistsaitszho if you found an answer please let me know too.
@sabriauf i never find solution to that. sorry
Problem can be solved by removing in normalize.css these lines:
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
Anybody found the solution for this problem?
Update the normalize.css file
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
// vertical-align: baseline; // removed
}
sub {
bottom: -0.25em;
vertical-align: sub; // added
}
sup {
top: -0.5em;
vertical-align: super; // added
}