πŸ’» Programming/CSS

[CSS] 13. Margins ( λ§ˆμ§„, μ—¬λ°± )

margin 속성은 HTML μš”μ†Œμ˜ μ£Όλ³€ 곡간을 μ‘°μ ˆν•©λ‹ˆλ‹€. λ‹€λ₯Έ μ»¨ν…νŠΈμ™€ μ˜€λ²„λž˜ν•‘ ν•  μˆ˜λ„ μžˆμŠ΅λ‹ˆλ‹€. μŒμˆ˜κ°’μ„ μ‚¬μš©ν•œλ‹€λ©΄ 말이죠.

이 μ†μ„±μ˜ 값은 μžμ‹ μš”μ†Œμ—κ²Œ μƒμ†λ˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€. 그리고 μ£Όμ˜ν•  점은 λΆ™μ–΄μžˆλŠ” 두 μš”μ†Œκ°„μ˜ top, bottom λ§ˆμ§„μ˜ 경우 쀑볡 적용이 λ˜λŠ” 것이 μ•„λ‹ˆλΌ 큰 숫자만 적용이 λœλ‹€λŠ” κ²ƒμž…λ‹ˆλ‹€. 이게 무슨 λ§μ΄λƒκ³ μš”? 천천히 예제λ₯Ό 따라가보도둝 ν•΄λ³΄μ„Έμš”.

λ‹€μŒμ€ μ—¬λ°± κ΄€λ ¨ μ†μ„±μž…λ‹ˆλ‹€.

  • margin 

  • margin-bottom  

  • margin-top  

  • margin-left  

  • margin-right  

이제 ν•˜λ‚˜ν•˜λ‚˜ 예제λ₯Ό ν†΅ν•΄μ„œ μ•Œμ•„λ³΄λ„λ‘ ν• κΉŒμš”? 


The margin Property:

ν•œλ°©μ— λλ‚΄λŠ” μ†μ„±μž…λ‹ˆλ‹€. λͺ¨λ“  λ§ˆμ§„ κ΄€λ ¨λœ 속성값을 λ„£μ–΄μ„œ ν•œλ²ˆμ— 섀정을 ν•  수 μžˆμŠ΅λ‹ˆλ‹€.

μ•„λž˜λŠ” p νƒœκ·Έ 주변에 λ§ˆμ§„μ„ μ„€μ •ν•  λ•Œμ˜ λ§ˆμ§„ 속성 μ‚¬μš©λ²•μž…λ‹ˆλ‹€. 

<style type="text/css">
p {margin: 15px}
all four margins will be 15px

p {margin: 10px 2%}
top and bottom margin will be 10px, left and right margin will be 2% of the total width of the document.

p {margin: 10px 2% -10px}
top margin will be 10px, left and right margin will be 2% of the total width of the document, bottom margin will be -10px

p {margin: 10px 2% -10px auto}
top margin will be 10px, right margin will be 2% of the total width of the document, bottom margin will be -10px, left margin will be set by the browser

</style>

 

예제λ₯Ό ν•œλ²ˆ λ³΄μ‹œμ£ . 

<p style="margin: 15px; border:1px solid black;">
all four margins will be 15px
</p>

<p style="margin:10px 2%; border:1px solid black;">
top and bottom margin will be 10px, left and right margin will be 2% of the total width of the document.
</p>

<p style="margin: 10px 2% -10px; border:1px solid black;"> top margin will be 10px, left and right margin will be 2% of the total width of the document, bottom margin will be -10px </p>

<p style="margin: 10px 2% -10px auto; border:1px solid black;"> top margin will be 10px, right margin will be 2% of the total width of the document, bottom margin will be -10px, left margin will be set by the browser
</p>

κ²°κ³ΌλŠ” μ•„λž˜μ™€ κ°™μŠ΅λ‹ˆλ‹€.

all four margins will be 10px

top and bottom margin will be 10px, left and right margin will be 2% of the total width of the document.

top margin will be 10px, left and right margin will be 2% of the total width of the document, bottom margin will be -10px

top margin will be 10px, right margin will be 2% of the total width of the document, bottom margin will be -10px, left margin will be set by the browser

 


The margin-bottom Property:

이건 뭐 말 μ•ˆν•΄λ„ μ•„λž˜μ‘± λ§ˆμ§„ μ†μ„±μ΄λΌλŠ” 것을 μ•„μ‹€κ²λ‹ˆλ‹€. μ†μ„±κ°’μœΌλ‘œλŠ” length, % λ˜λŠ” auto λ₯Ό κ°€μ§ˆ 수 μžˆμŠ΅λ‹ˆλ‹€.

<p style="margin-bottom: 15px; border:1px solid black;">
This is a paragraph with a specified bottom margin
</p>

<p style="margin-bottom: 5%; border:1px solid black;">
This is another paragraph with a specified bottom margin in percent
</p>

 

κ²°κ³ΌλŠ” μ•„λž˜μ™€ κ°™μŠ΅λ‹ˆλ‹€.

This is a paragraph with a specified bottom margin

This is another paragraph with a specified bottom margin in percent

 


The margin-top Property:

μœ„μ™€ λ™μΌν•©λ‹ˆλ‹€.
<p style="margin-top: 15px; border:1px solid black;">
This is a paragraph with a specified top margin
</p>

<p style="margin-top: 5%; border:1px solid black;">
This is another paragraph with a specified top margin in percent
</p>

 

κ²°κ³ΌλŠ” μ•„λž˜μ™€ κ°™μŠ΅λ‹ˆλ‹€.

This is a paragraph with a specified top margin

This is another paragraph with a specified top margin in percent

 


The margin-left Property:

μœ„μ™€ λ™μΌν•©λ‹ˆλ‹€.
<p style="margin-left: 15px; border:1px solid black;">
This is a paragraph with a specified left margin
</p>

<p style="margin-left: 5%; border:1px solid black;">
This is another paragraph with a specified top margin in percent
</p>

 

κ²°κ³ΌλŠ” μ•„λž˜μ™€ κ°™μŠ΅λ‹ˆλ‹€. 

This is a paragraph with a specified left margin

This is another paragraph with a specified top margin in percent



The margin-right Property:

μœ„μ™€ λ™μΌν•©λ‹ˆλ‹€.
<p style="margin-right: 15px; border:1px solid black;">
This is a paragraph with a specified right margin
</p>

<p style="margin-right: 5%; border:1px solid black;">
This is another paragraph with a specified right margin in percent
</p>

 

κ²°κ³ΌλŠ” μ•„λž˜μ™€ κ°™μŠ΅λ‹ˆλ‹€. 

This is a paragraph with a specified right margin

This is another paragraph with a specified right margin in percent

 

 

 

 

 

 

Reference : http://www.tutorialspoint.com/css/css_margins.htm