Forums

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

Home Forums CSS conflict between two multi-collumns classes

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #46539
    tomjobim
    Participant

    Hi,

    I’m trying to have two styles of multi-collumns inside the content area.

    Somehow the website only fully understand one of them. The other one doesn’t have the width of the collumn respected.

    here is the definition of the collumns:

    .col02 {
    height: 140px;

    -webkit-column-width: 280px;
    -webkit-column-gap: 5px;

    -moz-column-width: 280px;
    -moz-column-gap: 5px;

    column-width:280px;
    column-gap:5px;
    }

    .col01 {
    height: 140px;

    -webkit-column-width: 140px;
    -webkit-column-gap: 5px;

    -moz-column-width: 140px;
    -moz-column-gap: 5px;

    column-width:140px;
    column-gap:5px;

    }

    and here the content :

    <.div class="col01" style="position: absolute; top: 455px; left: 150px;">edifício louveira

    são paulo – sp
    1946-1952

    arquitetura

    vilanova artigas
    carlos cascaldi

    colaboradores

    josé antônio
    mirtes ferreira
    ubaldo ribeiro
    joana telles
    ticiana alves

    memorial

    O Louveira é um edifício residencial multifamiliar localizado na Praça Vilaboim, no bairro de Higienópolis na cidade de São Paulo.

    Foi projetado em 1946 pelos arquitetos João Batista Vilanova Artigas e Carlos Cascaldi e é considerado um importante
    representante da arquitetura moderna naquela cidade. A obra caracteriza-se pela composição de duas lâminas paralelas, uma com sete e outra com seis andares e intermediadas por um pátio interno ajardinado.

    and here the website:

    http://cargocollective.com/cancioneirojobim/10

    where is the problem???

    #143740
    Paulie_D
    Member

    Are you applying the column count property?

    Why are you using absolute positioning & tables for layout?

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.