본문 바로가기
html

[html/css]정의 목록 <dl><dt><dd> 태그

by 지구별에 2014. 7. 10.

 

 

[html/css]목록을 만드는 <dl><dt><dd> 태그

 

어제 목록을 만드는 태그 중  <ul> <ol> 을 배웠고요.

 

오늘은 <dl>태그를 알아보겠습니다.

 

 

목록을 만드는  ul, ol, li 태그

 

 

 

<dl>태그는 definition list(정의 목록)의 약자로, 사전처럼 용어를 설명하는 목록을 만듭니다.

 

<dt>는  definition term(정의 용어)의 약자로, 정의되는 용어의 제목을 넣을 때 사용합니다.

 

<dd>는  definition description(정의 설명)의 약자로, 용어를 설명하는 데 사용합니다.

 

 

 

 

▶실제 사용 예를 볼까요?

 

dl dt dd.htm

 

 

 html/css

 <html>
<head>
<style>
body{background: #CEF279;}
h2{color:#997000;}
</style>
</head>

<body>
 

<h2>Definition List</h2>
<dl>
<dt>google</dt>
<dd>verb. to search for something on the Internet using the Google™ search engine</dd>
<dt>Google</dt>
<dd>Google is an American multinational corporation specializing in Internet-related services and products.</dd>
<dt>Google Chrome</dt>
<dd>Google Chrome is a freeware web browser developed by Google</dd>
</dl>

 

</body>
</html> 

  

 

 

▶실행화면

 

 

 

 

<dd>를 사용하면 자동으로 들여쓰기가 되는데요.

 

들여쓰기 거리를 조절하려면 text-indent 속성이나 margin-left, padding-left 값으로 조절하는 방법이 있습니다.

 

예: dd{text-indent: 20px;}

     dd{margin-left: 20px;}

 

오늘은 사전처럼 용어에 대한 목록을 만들 때 사용하는 <dl> <dt> <dd>태그를 배워 보았습니다.

 

 

   

[html/css] text-indent 속성(들여쓰기)

 

브라우저 기본값의 초기화 리셋(reset.css)의 개념

 

line-height 속성 배우기

 

text-decoration 속성(none, underline, overline, line-through)

 

반응형

'html' 카테고리의 다른 글

[html] param 태그 (object 매개변수 지정)  (0) 2014.07.17
[html5] embed 태그  (0) 2014.07.16
[html/css]목록을 만드는 <ul> <ol> <li>태그  (3) 2014.07.09
html <object>태그 정리  (0) 2014.07.08
[html/css] iframe 태그 사용법  (1) 2014.07.04

댓글