웹(클라이언트)/CSS

Tag의 font속성과 사이즈 지정

여동동 2021. 9. 27. 16:12

소스코드

<!DOCTYPE html>
<html lang="en" dir="ltr">
<style media="screen">
  p{
    /*font-size:5rem;
    font-family: arial, verdana, "Helvetica Neue", monospace;
    font-weight: bold;
    line-height: 2;*/
    font :bold 5rem/2 arial, veredana, "Helvertica Neue", serif  /*위의 속성들이 순서대로 설정해주는 집합체, 순서중요*/
  }
</style>

  <head>
    <meta charset="utf-8">
    <title>Text font</title>
  </head>
    <body>
      <p>
        Hello world <br>
        Hello world
      </p>
    </body>

</html>

 

 

결과값