<style>
div{
background-color:yellowgreen;
width: 10vmin;
height: 10vmin;
}
</style>
- calc() : 필요한 임의의 값을 계산식으로 처리
```html
<style>
div{
background-color:yellowgreen;
width: calc(10vmin + 10vw);
height: calc(10vmin + 10vh);
}
</style>
text-align: center 가로 정렬
<style>
div{
background-color:yellowgreen;
width: 10vw ;
height: 20vh;
text-align:center;
line-height: 20vh;
}
</style>
현재 화면 높이의 1/5 – 현재 화면 넓이의 1/15 인 정사각형 만들기 + 글자 세로 중앙 정렬 하기!
ㅠㅠ모르겠다..
<style>
div{
background-color:yellowgreen;
text-align:center;
width: calc((100vh/5)-(100vw/15));
height: calc((100vh/5)-(100vw/15));
line-height: calc((100vh/5)-(100vw/15));
}
</style>