일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- FileZilla설치
- calc.plus
- selectedIndex
- Math.floor()
- is_check
- 파일질라설치오류
- selectoptions
- Math.ceil()
- FileZilla다운로드
- 파일질라다운로드
- 주석이 먹히지 않을 때
- 파일질라설치
- Parent
- Excel
- Git
- addClass
- calc.minus
- push오류
- excel중복체크
- hide
- Math.round()
- toFixed()
- 1521
- ctrl+/
- 증가값
- removeClass
- SUB함수
- 소스트리인증실패
- index %
- slideUp
- Today
- Total
잡동사니에도 사랑을
[21.09.16] exam02(03_cssColorText) - 본문
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
h3 {
text-align: right;
}
span {
text-decoration: line-through; /* 중간 줄 */
}
strong {
text-decoration: overline; /* 윗줄 */
}
.p1 {
text-indent: 3em; /* 3글자 들여쓰기 */
text-align: justify; /* 양쪽 정렬 */
}
.p2 {
text-indent: 1em; /* 1글자 들여쓰기 */
text-align: center; /* */
}
</style>
</head>
<body>
<h3>텍스트 꾸미기</h3>
<hr>
<p class="p1">
HTML의 태그만으로 기존의 워드 프로세서와 같이 들여쓰기, 정렬, 공백, 간격 등과 세밀한 <span>텍스트 제어</span>를 할 수 없다.
</p>
<p class="p2">
그러나, <strong>스타일 시트</strong>는 이를 가능하게 한다. 들여쓰기, 정렬에 대해서 알아본다
</p>
<p>
<a href="http://www.naver.com" style="text-decoration: none">
밑줄이 없는 네이버 링크
</a>
</p>
</body>
</html>
'JAVA_EE > CSS' 카테고리의 다른 글
[21.09.16] exam01(04_cssBoxModel) - (0) | 2021.09.16 |
---|---|
[21.09.16] exam03(03_cssColorText) - (0) | 2021.09.16 |
[21.09.16] exam01(03_cssColorText) - (0) | 2021.09.16 |
[21.09.16] exam02(02_cssSelector) (0) | 2021.09.16 |
[21.09.16] exam01(02_cssSelector) - (0) | 2021.09.16 |