본문 바로가기
HTML

List Style

by chaechaekim 2019. 7. 24.
<HTML>
	<HEAD>
	<TITLE>List Style</TITLE>
	</HEAD>

	<BODY>
		<ul style="list-style-type:circle">
			<li>흰 원형
		</ul>
		<ul style="list-style-type:disc">
			<li>검은 원형
		</ul>
		<ul style="list-style-type:square">
			<li>사각형
		</ul>
		<ul style="list-style-type:decimal">
			<li>10 진수
		</ul>
		<ul style="list-style-type:lower-roman">
			<li>소문자 로마자
		</ul>
		<ul style="list-style-type:upper-roman">
			<li>대문자 로마자
		</ul>
		<ul style="list-style-type:lower-alpha">
			<li>소문자 알파벳
		</ul>
		<ul style="list-style-type:upper-alpha">
			<li>대문자 알파벳
		</ul>
		<ul style="list-style-type:none">
			<li>지정하지 않음
		</ul>
	</BODY>
</HTML>

'HTML' 카테고리의 다른 글

표 합치기 실습  (0) 2019.07.24
테이블  (0) 2019.07.24
목록 만들기  (0) 2019.07.24
배경 그림  (0) 2019.07.23
수평선 긋기  (0) 2019.07.23

댓글