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

CSS 가시성 사용:숨김;


가시성 값이 숨겨진 속성 요소를 숨기는 데 사용됩니다. 다음 코드를 구현하여 숨겨진 가치

예시

<html>
   <head>
   </head>
   <body>
      <p>This paragraph should be visible in normal way.</p>
      <p style = "visibility:hidden;">
         This paragraph should not be visible.
      </p>
   </body>
</html>