View on GitHub

Web Projects

Compilations of various Web Projects and Notes on JS, jQuery, CSS, Aframe, ThreeJS, WebXR

CSS Layouts



Columns in CSS

We can simply make multiple columns using css property columns. The columns CSS shorthand property sets the number of columns to use when drawing an element’s contents, as well as those columns’ widths. columns is a shorthand for the following CSS properties:

.columns {
    color: white;
    padding: 2rem 1rem;
    columns: 250px auto;
    text-align: justify;
}

Above code will give you columns with 250px as width, with number of columns adjusting to the screen size w.r.t the column’s size.

Example Link


Reference