1em은 기본 font의 값이 16px일떄의 값이다.
그렇다면 부모노드가 2em이면 자식노드의 font값도 32px이 된다..
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style>
body > div {
font-size:16px;
background-color: #ff0;
font-family:"Gulim";
}
.myspan {
color : #f00;
font-size:2em;
}
</style>
</head>
<body>
<div>
<span class="myspan">my text is upper!</span>
</div>
</body>
</html>
'웹 프로그래밍(풀스택-->java)' 카테고리의 다른 글
번외) 자바 xss보안방법 (0) | 2021.06.16 |
---|---|
12. Element가 배치되는 방법(CSS layout)-1 (0) | 2021.06.13 |
10. css selector (0) | 2021.06.13 |
9. 상속과 우선순위 결정 -2 (0) | 2021.06.13 |
8. css 상속과 우선순위 결정 (0) | 2021.06.13 |