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

CSS에서 margin-bottom 속성 사용

<시간/>

여백-하단 요소의 아래쪽 여백을 지정합니다. 길이, % 또는 자동 값을 가질 수 있습니다. 다음 코드를 실행하여 하단 여백을 설정할 수 있습니다.

예시

<html>
   <head>
   </head>
   <body>
      <p style = "margin-bottom: 20px; border:2px solid red;">
         This is a paragraph with a specified bottom margin .
      </p>
      <p style = "margin-top: 20%; border:2px solid green;">
         This is another bottom with a specified top margin in percent
      </p>
   </body>
</html>