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
'π» Programming > CSS' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[CSS] 15. Paddings ( ν¨λ© ) (0) | 2016.06.12 |
---|---|
[CSS] 14. Lists ( 리μ€νΈ, λͺ©λ‘ ) (0) | 2016.06.12 |
[CSS] 12. Borders ( ν λ리, 보λ μ€μ ) (0) | 2016.06.12 |
[CSS] 11. Table ( ν μ΄λΈ μ€μ ) (0) | 2016.06.12 |
[CSS] 10. Links ( λ§ν¬ μ€μ ) (0) | 2016.06.12 |