사용자:Asadal/테스트/common.css

위키원
이동: 둘러보기, 검색
.responsive-container {
    display: flex;
    flex-wrap: wrap;
}
.responsive-left, .responsive-right {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}
.responsive-left {
    background-color: lightblue;
}
.responsive-right {
    background-color: lightcoral;
}
@media (max-width: 600px) {
    .responsive-left, .responsive-right {
        width: 100%;
    }
}