마진 상단 요소의 상단 여백을 지정합니다. 길이, % 또는 자동 값을 가질 수 있습니다.
예시
다음 코드를 실행하여 상단 여백을 설정할 수 있습니다.
<html> <head> </head> <body> <p style = "margin-top: 10px; border:2px solid red;"> This is a paragraph with a specified top margin </p> <p style = "margin-top: 10%; border:2px solid green;"> This is another paragraph with a specified top margin in percent </p> </body> </html>