다음 중 문서 전체에 적용되는 기본 글꼴 크기를 20pt로 설정하는 CSS 태그로 옳은 것은?
문제풀이 모드
0
정답률 : -
다음 중 문서 전체에 적용되는 기본 글꼴 크기를 20pt로 설정하는 CSS 태그로 옳은 것은?
<head> <style type="text/css"> <!-- body {font-size:20pt;} //--> </style> </head>
<head> <link rel="stylesheet" type="text/css" href="mystyle.css"> {font-size:20pt;} </head>
<body> <p style="font-size:20pt;"> ... </p> </body>
<body> <font-size="20pt"> ... </font> </body>
채점하기