Unit4 - [HTML/CSS] ํ™œ์šฉ

๊ฐ•์„ฑ์ผยท2023๋…„ 4์›” 14์ผ
0
post-thumbnail

โœ… TIL


์ฒ˜์Œ์— ์‹œ์ž‘ํ•  ๋•Œ, boder-box๋กœ ์ „์ฒด css๋ฅผ ์ž…ํžˆ๋Š” ์ด์œ ๋ฅผ ์•Œ์•˜๋‹ค.



flex-direction: row ์™€ column ๋น„๊ต



flex-wrap: nowrap ์™€ wrap ๋น„๊ต



justify-content: center ์™€ ... ๋น„๊ต



align-items: center



flex:




๐Ÿ—“๏ธ Todo. ๊ณ„์‚ฐ๊ธฐ ๋งŒ๋“ค๊ธฐ


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>๊ณ„์‚ฐ๊ธฐ</title>
    <link rel="stylesheet" href="index.css" />
  </head>

  <body>
    
    <div class="calculator"></div>

  </body>

</html>
* {
    margin: 0;
    padding: 0;
    border: 0px;
    box-sizing: border-box;
    font-family: monospace, cursive;
    color: #000;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
	border: 1px solid red;
  height: 100vh;
}
 .calculator {
  width: 350px;
  height: 500px;
  border: 1px solid blue;
}

profile
์•„์ด๋””์–ด๊ฐ€ ๋„˜์น˜๋Š” ํ”„๋ก ํŠธ์—”๋“œ๋ฅผ ๊ฟˆ๊ฟ‰๋‹ˆ๋‹ค ๐Ÿ”ฅ

0๊ฐœ์˜ ๋Œ“๊ธ€