Skip to content
CSS Head
CSS links, tutorials, code and demos for web designers and developers
    About Archives Contact Privacy and Cookies Policy Submit a Link Submit Community News
CSS Head
CSS links, tutorials, code and demos for web designers and developers
Home Submit a Link Contact About

Tag: inline-block

Should You Use Inline-Blocks As A Substitute For Floats?

December 18, 2012

An article that discusses the pros and cons of using inline-blocks versus floats for coding your CSS layouts…

csshead comment 0 Comments

Fighting the Space Between Inline Block Elements

April 30, 2012

Formatting links as a series of inline-block elements is an easy way to center align stuff e.g. a navigation menu. There’s one annoying issue and that’s the blank spaces that appear between elements. This article has several code examples that will remove the blank spaces from inline-block elements…

csshead comment 0 Comments

What’s the Deal With Display: Inline-Block?

March 12, 2012

One interesting alternative to floats that people are turning to more and more lately is to set the display value of an element to inline-block. What does this do exactly? How is it like a float? How is it different? Let’s dive in and see what we can discover…

csshead comment 0 Comments

inline-block vs float

April 13, 2010

With display:inline-block finally ready for everyday use across the most popular browsers (in all honesty, it has been for a while now), I quickly hit a pretty big dilemma. When comparing inline-block to floats, it wasn’t immediately clear what the exact differences were and what method to prefer. I looked online but couldn’t find a […]

csshead comment 0 Comments