<p>태그는 부모
<em>태그는 <p>의 자식이다.
자식태그는 부모태그를 상속받는다.


1
2
3
<p style="color:green">안녕하세요
    <em style="font-size:25px"> 자식입니다.</em>
</p>
cs



1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>부모 스타일 상속</title></head>
<body>
<h3>부모 스타일 상속</h3>
<hr>
<p style="color:green">자식 태그는 부모의 스타일을
    <em style="font-size:25px">상속</em>받는다.</p>
</body>
</html>
 
cs



 

Posted by 너래쟁이
: