以下为ChatGPT自动生成的解答,正确与否请自行判断。 也许你也可以从大家的发帖中找到想要的答案!
BFE.devAI解答 - CSS 问题
9. multi-column text
.three-column-text { column-count: 3; column-gap: 10px; column-rule: 1px solid #ddd; padding: 10px; }
/* The following modifies column separator's border style*/ .three-column-text::after { content: ""; display: block; width: 100%; height: 100%; box-sizing: border-box; border-right: 1px solid #ddd; }