반응형
This is some content.
하나의 div에 두가지 배경색을 넣기 위한 방법은 그라데이션을 이용하는 방법이 있다.
그라데이션을 50% 50%씩주면 사실상 두가지 배경색이 나타나는 것과 동일한 효과를 누릴 수 있다.
#content{
height:100vh; /* 구미에 맞게 수정 */
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(to bottom, #f5f4f3 50%, tomato 50%);
}
반응형
'Basic > HTML & CSS' 카테고리의 다른 글
순수 CSS로만 이루어진 hover시 Animation Button (0) | 2019.06.29 |
---|---|
failed to load resource name not resolved (0) | 2019.06.16 |
before와 after을 이용한 가운데 펀칭효과 css (0) | 2018.09.02 |
특정 element의 child가 parent의 margin을 무시하는 css (0) | 2018.08.24 |
화면을 넘어갈 때 강제 개행 CSS (0) | 2018.08.22 |