<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;

	/* optional styles for appearance */
	/* 텍스트 길이가 짧을수록 아래의 width 값을 작게 하면 슬라이딩이 됩니다. 값이 클수록 텍스트 길이가 길어야 됩니다. */
	width: 150px;
	height: 22px; /* height should be included to reserve visual space for the marquee */
}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	display: block;
	white-space: nowrap; /* keep all text on a single line */

	/* optional styles for appearance */
	font: 12px dotum,'돋움';
	padding: 3px 5px;
}</pre></body></html>