I’m trying to format a note with a n-column layout but somehow, in preview mode, my note has >n columns.
MWE:
---
cssclass: three-columns
---
Lorem ipsum dolor sit amet [...]
with columns.css defining
.three-columns {
columns: 3;
}
Result:
Actually, the note now has 5 columns. Interestingly, when there is less content the note has three columns ; this behavior only appears when the content “overflows” the screen — instead of continuing below (keeping three columns fixed) an additional column is created, and so on.
Any hint about what is wrong here?