Skip to main content

CSS - Bootstrap

Δες το Bootstrap tutorial και εξοικειώσου χρησιμοποιώντας το. Επίσης κάνε και ένα δίστηλο με τον custom κώδικα που σου έδωσα πιο κάτω.

Custom two column

.my-row{
display: flex;
flex-wrap:wrap;
}

.my-col-1{
width: 50%;
padding: 0 20px;
order: 0;
}

.my-col-2{
width:50%;
order: -1;
}


@media only screen and (max-width: 600px) {
.my-col-1{
width: 100%;
}

.my-col-2{
width:100%;
margin-bottom: 20px;
}
}

Animations