Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS 1 and 3-column layout issue when resizing Reply To: 1 and 3-column layout issue when resizing

#165709
Atelierbram
Participant

Alternatively, if you went with multiple classes on the ‘content’ div:


<div class="column column-3">
            <div class="content pad pad-medium"

and in the CSS:


 .content { 
   /* padding: 0.6em; */
   min-height: 170px;
    border: 1px solid #000;
    /* overflow: auto; */
    /* background-color: rgba(0,255,255,.5); */
 }
.pad-small { 
  padding: .5em;
}
.pad-medium { 
  padding: 1em;
}
.pad-large { 
  padding: 1.25em;
}