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

CSS로 인셋 테두리 설정

<시간/>

CSS로 삽입 테두리를 설정하려면 테두리 스타일을 사용하세요. 값이 삽입된 속성

예시

<html>
   <head>
   </head>
   <body>
      <p style = "border-width:4px; border-style:none;">
         This is a border with none width.
      </p>
      <p style = "border-width:4px; border-style:inset;">
         This is inset border.
      </p>
   </body>
</html>