มีเดียวิกิ:Gadget-column-hacks.css

จาก วิกิพจนานุกรม พจนานุกรมเสรี

หมายเหตุ: หลังเผยแพร่ คุณอาจต้องล้างแคชเว็บเบราว์เซอร์ของคุณเพื่อดูการเปลี่ยนแปลง

  • ไฟร์ฟอกซ์ / ซาฟารี: กด Shift ค้างขณะคลิก Reload หรือกด Ctrl-F5 หรือ Ctrl-R (⌘-R บนแมค)
  • กูเกิล โครม: กด Ctrl-Shift-R (⌘-Shift-R บนแมค)
  • อินเทอร์เน็ตเอกซ์พลอเรอร์ และ Edge: กด Ctrl ค้างขณะคลิก Refresh หรือกด Ctrl-F5
  • โอเปร่า: กด Ctrl-F5
/*
	Hacks to fix the rendering of columns in Internet Explorer and Firefox,
	from [[en:Wiktionary:Beer parlour/2019/June#{{top3}} in descendants section (e.g. Proto-Slavic)]].
*/
/* This only runs in Internet Explorer. */
@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
	.derivedterms ul {
		-webkit-column-break-inside: avoid;
		break-inside: avoid;
	}
}

/* This only runs in Firefox. */
@-moz-document url-prefix() {
    .derivedterms ul {
        break-inside: avoid;
    }
}