CSS Align Div Elements with Different Heights

Capture

Jika dalam list terdapat item dengan tinggi berbeda, supaya setiap baris tetap lurus seperti gambar di atas, floating left menggunakan

[code language=”css”]

#frontend-contents .dirfile
{
display: inline-block;
vertical-align: top;
}

[/code]

Referensi https://css-tricks.com/snippets/css/cross-browser-inline-block/

Menggunakan inline-block, ada jarak antara elemen. Solusinya

[code language=”css”]
#parent {
font-size: 0;
}

#child {
font-size: 16px;
}

[/code]

Referensi http://stackoverflow.com/questions/19038799/why-is-there-an-unexplainable-gap-between-these-inline-block-div-elements

This entry was posted in   CSS.
Bookmark the   permalink.

Chandra Oemaryadi has written 244 articles

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>