일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- web
- 라즈베리파이
- ubuntu
- Raspberry Pi
- Arduino pin map
- mysql c
- HTML
- 아두이노 wifi
- Virtual Box
- 아두이노 핀 맵
- 아두이노 핀
- 아두이노 프로미니
- wifi멀티탭
- 아두이노 핀맵
- 아두이노 pro mini
- MySQL
- mysql api
- 웹 프로그래밍
- Codility
- database
- 알고리즘
- html input
- 코딜리티
- vm
- Mysql c API
- Arduino pin
- 아두이노
- 아두이노 와이파이
- 데이터베이스
- Arduino
- Today
- Total
offfff
HTML Classes 본문
Using The class Attribute
HTML class 속성은 같은 클래스 이름을 가진 element들을 동일한 속성으로 정의하고 싶을때 사용한다.
아래 예제에서는 같은 클래스 이름을 가진 3개의 <div> element가 있다.
<!DOCTYPE html>
<html>
<head>
<sytle>
div.cities {
background-color: black;
color: white;
margin: 20px 0 20px 0;
padding: 20px;
}
</style>
</head>
<body>
<div class="cities">
<h2>London</h2>
<p>London is the capital of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
</div>
<div class="cities">
<h2>Paris</h2>
<p>Paris is the capital and most populous city of France.</p>
</div>
<div class="cities">
<h2>Tokyo</h2>
<p>Tokyo is the capital of Japan, the center of the Greater Tokyo Area, and the most populous metropolitan area in the world.</p>
</div>
</body>
</html>
Using The class Attribute on Inline Elements
HTML class 속성은 inline element로 사용될 수 있다.
<!DOCTYPE html>
<html>
<head>
<sytle>
span.note {
font-size: 120%;
color: white;
}
</style>
</head>
<body>
<h1><span class="note">Important</span> heading</h1>
<p>This is some <span class="note">important</span> text.</p>
</body>
</html>
아래 링크를 참조하여 번역 및 수정 함
http://www.w3schools.com/html/html_classes.asp
'프로그래밍' 카테고리의 다른 글
HTML 자바스크립트(HTML JavaScript) (0) | 2016.09.09 |
---|---|
HTML iframes (0) | 2016.09.08 |
HTML 블록(HTML Blocks) (0) | 2016.09.06 |
HTML 리스트(HTML Lists) (0) | 2016.09.05 |
HTML 표(HTML Tables) (0) | 2016.09.04 |