/* Create three equal columns that float next to each other */ .column { float: left; width: 33.33%;} /* Clear floats after the columns */ .row:after { content: ""; display: table; clear: both;} /* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */ @media screen and (max-width: 600px) { .column { width: 100%; }}
/* Left and right column */ .column.side { width: 25%;} /* Middle column */ .column.middle { width: 50%;} /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */ @media screen and (max-width: 600px) { .column.side, .column.middle { width: 100%; }}
0评论