일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- binary search
- Hash
- 그래프
- 스토어드 프로시저
- DP
- Stored Procedure
- Dijkstra
- MYSQL
- Brute Force
- two pointer
- String
- union find
- Trie
- 이진탐색
- SQL
- 다익스트라
- Two Points
Archives
- Today
- Total
codingfarm
block내 tag 수직정렬 본문
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
32
|
<!doctype html>
<html>
<head>
<title>CSS3 Font Property</title>
<style>
.font_big { font-size: 2em; }
.font_italic { font-style: italic; }
.font_bold { font-weight: bold; }
.font_center { text-align: center; }
.button{
width: 150px;
height: 70px;
background-color: #FF6A00;
border: 10px solid #FFFFFF;
border-radius: 30px;
box-shadow: 5px 5px 5px #A9A9A9;
}
.button > a {
display : block;
line-height : 70px;
}
</style>
</head>
<body>
<div class="button">
<a href="#" class = "font_big font_italic font_bold font_center">Click</a>
</div>
</body>
</html>
|
cs |
text-align : center 에 의해 좌우로 중앙정렬
height와 line-height를 같은 크기로 맞추어 상하로 중앙정렬
글씨가 차지하는 한줄 폭을 조정함으로써 상하의 위치를 중앙으로 맞추었다.
이는 글이 한줄로 이루어 젔을때만 쓸 수 있는 중앙정렬 방법이다.
ㅌㅇ
Comments