개요

  • css에서 여백을 주는 것은 marginpadding으로 구분할 수 있습니다.
  • margin바깥쪽 여백, padding안쪽 여백을 지정합니다.
    • padding은 여백만큼 크기가 더 커지게 됩니다.
    • 각 방향마다(상하좌우) 개별 속성을 지정할 수도 있습니다.

그림으로 한번 그려보았는데요.

 

[margin]

 

[padding]

  • padding은 header, container, container-left 모두 동일하게 작용하지만, 최적화를 위해서는 최상위 요소 보다는 직접적으로 padding 효과를 받는 요소에 넣는 것이 좋다고 합니다.

 

[전체]

 

 

예제 코드 - HTML

reset.css를 적용한 후에 진행하였습니다.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="./style.css">
    <link rel="stylesheet" href="./normalize.css">
</head>
<body>
    <div class="a">a 입니다.</div> 
    <div class="b">b 입니다.</div> 
</body>
</html>

margin과 padding 적용해보기

.a{
    background-color: pink;
    margin: 10px;
    border: 2px solid black;
}

.b{
    background-color: skyblue;
    border: 2px solid black;
    padding: 10px;
}

 

a에는 margin을, b에는 padding을 넣어보았습니다.

margin은 바깥쪽 여백을 잡아주기 때문에 바깥에 흰 여백이 생긴 것을 확인할 수 있습니다.

반대로, padding은 안쪽 여백을 잡아주고 있어 b가 상하좌우로 10px씩 더 커진 것을 볼 수 있네요.


개별 속성 지정해보기

상하좌우로 개별 속성을 지정해보겠습니다.

.a{
    margin-top: 10px; 
    margin-left: 10px; 
    margin-right: 10px; 
    margin-bottom: 10px; 
}

.b{
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

이렇게 top, left, right, bottom으로 각각의 여백을 설정할 수 있어요.

 

그렇지만 margin, padding 한 속성으로 개별 여백도 지정해볼 수 있습니다.

.a{
	/*       위   오른  아래  왼*/
	margin: 10px 50px 20px 0;
}
   
.b{   
	/*       위   오른  아래  왼*/
	padding: 10px 50px 20px 0;
}

 

이런식으로 설정할 수 있습니다!

결과 값은 그림과 같이 나타나게 됩니다. 

여백 정도에 따라서 예상하셨겠지만, 시계 방향으로 여백이 지정되네요!

 

 

또한, 속성을 2개만 기술한다면 첫 번째 값은 상하, 두 번째 값은 좌우 여백을 지정합니다.

.a{
	/*       상하  좌우  */
	margin: 10px 50px;
}
   
.b{   
	/*       상하   좌우  */
	padding: 10px 50px;
}

 

그렇다면, 가장 먼저 사용해보았던 margin: 10px; 이런식으로 하나만 작성한 것은 상하좌우 모두 10px씩 margin을 주는 것이라고 이해할 수 있습니다.


margin: auto를 이용하여 중앙 정렬하기

margin: auto 속성을 사용하면, 전체 width에서 좌우로 auto 여백을 가지기 때문에 영역 안에서 중앙으로 몰아주는 효과가 있습니다.

 

예제 코드

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="./style.css">
    <link rel="stylesheet" href="./normalize.css">
</head>
<body>
    <div class="a">
        <div class="b">중앙으로 정렬해보아요</div>
    </div>
</body>
</html>

 

.a{
    background-color: skyblue;
}

.b{
    width: 980px;
    background-color: pink;
    margin: auto;
}

 

이렇게 하위 태그가 선언되었을 때 하위 태그에 대해서 width를 설정해준 다음, margin: auto 속성을 부여하면 전체 width에 대해 중앙으로 정렬된 것을 볼 수 있습니다.


수직 중앙 정렬하기

번외로 marginpadding을 이용한 수직 중앙 정렬 방법도 실습해보았습니다.

margin: auto를 통해 좌우 중앙 정렬이 가능했는데요. 

여기에 padding을 추가하여 수직 중앙 정렬도 구현해볼 수 있습니다.

.a{
    background-color: skyblue;
    padding: 150px;
}

.b{
    width: 980px;
    background-color: pink;
    margin: auto;
    padding: 20px;
}

 

직전 html 코드에서 css에 padding을 추가해보았습니다.

 

이렇게 수직으로도 정렬된 결과를 확인해볼 수 있습니다.


🍀 추가로 공부해야 할 것
찾아보니 margin, padding에 음양수를 넣는 것이 달랐고, auto, collaspe를 적용할 수 있는게 달랐다.
관련해서 더 알아보자!

'Language Note > CSS' 카테고리의 다른 글

[CSS] reset.css  (2) 2024.01.07

브라우저 내에서 기본적으로 지정되어 있는 사항들

1. 웹브라우저에서는 기본적으로 margin이 부여되어 있습니다.(User-Agent StyleSheet)

  • reset.css나 body에 간단하게 margin/padding: 0;을 부여하고 시작하는게 좋습니다.
  • 브라우저마다 내장 스타일이 조금씩 다르기 때문에 그대로 두고 시작한다면 의도했던 것들이 제대로 보이지 않는 현상이 발생할 수 있습니다.

 

2. font-size16px로 지정되어 있습니다.

 

3. width, heightauto로 지정되어 있습니다.

  • width는 auto일 때 100%(화면 처음부터 끝까지)로 인식합니다.
  • height는 auto일 때 0부터 출발합니다.(내부에 들어있는 요소에 따라 자동적으로 height가 늘어나요)

이 중에서 reset.css에 대해 알아보았습니다.

대표적으로 크롬과 사파리에 대한 css를 찾아볼 수 있었는데요.

Chrome: https://chromium.googlesource.com/chromium/src/third_party/+/master/blink/renderer/core/html/resources/html.css

Safari: https://trac.webkit.org/browser/trunk/Source/WebCore/css/html.css

 

브라우저에서 정의한 스타일이 무엇인지 확인할 수 있습니다.


0. 기본 형태

먼저, 기본적으로 html div를 생성해서 background-color를 입혀보았습니다.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="./style.css">
</head>
<body>
    <div class="a">안녕하세요</div> 
</body>
</html>

 

.a{
    background-color: pink;
}

 

 

오호 정말 여백이 존재하네요


1. margin, padding 값 조정

body에 padding과 margin에 대해서 0을 설정하여 확인해봤습니다.

body{
    margin: 0;
    padding: 0;
}

.a{
    background-color: pink;
}

 

여백 없이 꽉 들어차 있는 결과를 확인할 수 있었습니다.


 

이렇게 브라우저 내에서 제공하는 기본적인 스타일을 제거하는 방법에는 크게 CSS NormalizeCSS Reset이라는 방법이 있습니다.

 

nomalize라는 방법은 어느정도 유용한 스타일은 유지하는 형태로 제공하고, hard reset은 모든 css를 삭제해버리는 방법입니다.

 


2-1. CSS Normalize

https://github.com/necolas/normalize.css/blob/master/normalize.css

 

대표적으로 알려져있는 normalize.css 코드입니다.

 

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

이렇게 나타나겠네요.


2-2. CSS Reset

https://cssdeck.com/blog/scripts/eric-meyer-reset-css/

완전히 삭제해버리는 reset은 에릭 마이어씨의 css reset이 유명한데요.

 

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

엥 근데 원본 링크에 접속이 안되네요 .. 

 

이 외에도 다양한 방법이 있는 것 같아요

https://velog.io/@teo/2022-CSS-Reset-%EB%8B%A4%EC%8B%9C-%EC%8D%A8%EB%B3%B4%EA%B8%B0#%EA%B7%B8%EB%9E%98%EC%84%9C-%EB%AD%98-%EC%93%B0%EB%A9%B4-%EC%A2%8B%EC%9D%84%EA%B9%8C

 

2022 CSS Reset 다시 써보기!

..2022년 지금은 CSS Reset을 어떻게 만들어야 할까? 하는 생각이 들었습니다. 그래서 여러가지 관련자료와 애플, 네이버, 다음, 인프런, 오늘의 집, MS, 에어비엔비, 디스코드, 슬랙등의 CSS를 보면서

velog.io

 

이 분의 블로그를 통해서 많이 배웠네요!

 

조금 더 공부하면서 세부 내용들을 배워봐야겠습니다 :)

'Language Note > CSS' 카테고리의 다른 글

[CSS] margin과 padding  (0) 2024.01.07

+ Recent posts