Template:Div col/styles.css

勤求古训,博采众方
入我相思门留言 | 贡献2022年5月3日 (二) 23:58的版本 (创建页面,内容为“:​ .div-col { margin-top: 0.3em; column-width: 30em; column-count: 2; } .div-col-small { font-size: 90%; } .div-col-rules { column-rule: 1px solid #aaa; } →‎Reset top margin for lists in div col:​ .div-col dl, .div-col ol, .div-col ul { margin-top: 0; } →‎Avoid elements breaking between columns See also Template:No col break:​ .div-col li, .div-col dd { page-break-inside: avoid; →‎Removed from CSS in favor of break-inside c. 2020:​ brea…”
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
/*  */
.div-col {
	margin-top: 0.3em;
	column-width: 30em;
	column-count: 2;
}

.div-col-small {
	font-size: 90%;
}

.div-col-rules {
	column-rule: 1px solid #aaa;
}

/* Reset top margin for lists in div col */
.div-col dl,
.div-col ol,
.div-col ul {
	margin-top: 0;
}

/* Avoid elements breaking between columns
   See also Template:No col break */
.div-col li,
.div-col dd {
	page-break-inside: avoid; /* Removed from CSS in favor of break-inside c. 2020 */
	break-inside: avoid-column;
}