Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 id=tutorials인 요소를 선택합니다.

<시간/>

id="tutorials"인 모든 요소를 ​​선택하려면 다음 코드를 실행해 보십시오.

이를 달성하려면 #id CSS 선택기를 사용하세요.

<!DOCTYPE html>
<html>
   <head>
      <style>
         #tutorials {
            border: 3px solid red;
         }
      </style>
   </head>
   <body>
      <h1>Tutorialspoint</h1>
      <h2>Learning</h2>
      <p id = "tutorials">Tutorials on web dev, programming, database, networking, etc.</p>
      <p>Every tutorials has lessons with illustrations and figures.</p>
   </body>
</html>