inline-block is a CSS display option which causes an element to be positioned (mostly) like an inline element, but otherwise behave (mostly) like block element

learn more… | top users | synonyms

3
votes
2answers
35 views

Display: Inline block - What is that space?

Inline Blocks have this weird space in-between them. I could live with it, up to a point where, if I load more content with an AJAX Call, the tiny space goes away. I know I'm missing something here. ...
1
vote
2answers
29 views

CSS inline-block fixed width tiles

I'm building a tile-based portfolio Wordpress theme, and I can't get the tiles to center correctly in their parent div. Here's the static page (I'm migrating from .cu.cc asap). I've used inline-block ...
0
votes
2answers
56 views

two divs with display:inline-block - second div with iframe ad being pushed down a few pixels

Background: working on a responsive redesign. normalize.css used for reset. DFP Ads inserted into div's using this technique. The ad container div's are hidden depending on window size and the ad ...
1
vote
3answers
44 views

How to center things - display:block/inline-block

When centering things in html and css, I find two approaches - either applying on the element : display:block; margin:0 auto; or using: display:inline-block; text-align:center; (on the parent ...
0
votes
0answers
7 views

content div extends height when child divs use float

I'm trying to put two divs inside of a container, assigning one float: left and the other one float: right, while giving the container an overflow: hidden value, works, but there's a problem. For ...
1
vote
2answers
46 views

Resizing issues with floated fluid squares of different sizes

I hit a wall when coding my design that I can't get past since yesterday afternoon. I have a menu with a classic unordered list and I'm trying to style it into a tile "gallery". I'm working on a 12 ...
0
votes
2answers
37 views

Divs won't fit in like inline-block correctly

I do have a bit of HTML and css code and i want my divs(calculators) to be displayed inline with the same margin from top, but they just won't fit in the box correctly as I want to. One is situated ...
0
votes
4answers
42 views

adding img in paragraph is causing all its adjacent div slightly moved downward

I have set of div on my webpage with following HTML and CSS. <style type="text/css"> .div-set { margin: 5px 2px; } .div-set > ...
1
vote
3answers
64 views

Fill remaining horizontal space (or max-width) AND wrap on min-width

#fit and #wrap illustrate two different behaviors that I want to have for one element depending on the situation. The element should work like #fit if there is room, but should work like #wrap if ...
-4
votes
0answers
111 views

Vertical alignment inside inline-block and content affecting outer tag

I have several img inside spans, spans are inline-block and imgs vary. I don't understand basic principle about how inner tag is positionned inside outer one and how this process affect outer tag. ...
0
votes
1answer
60 views

Div width not fit with child contents

How to fit the div with its contents using bootstrap. <div class="row-fluid"> <div class="span12"> <div style="<!--tried with inline-block float:left clear:left ...
0
votes
2answers
19 views

Behavior of floated object when related element is missing

<div class="pagination"> <?php if($page->hasPrevVisible()): ?> <span class="prev"> <em>Previous Article</em> <a href="<?php echo ...
-2
votes
2answers
22 views

List links leaves unwanted space between left border and first list item. Why?

Why does an inline-block list of links leaves unwanted space between left border of div and first item in list. Check out the jsFiddle I have created. Code: HTML <body> <!--Header area ...
0
votes
2answers
38 views

Issue with inline-block element when setting a width using CSS

I create an element and set the CSS display to inline-block. Then I measure its width with firebug and jquery .width() it returns the same and i think correct width of this element. But then when I ...
0
votes
2answers
28 views

jQuery ignore elements inline block on .fadeOut

So what I have is 3 divs inline-block. when an image inside of any of the divs is clicked, the other divs fade out & the div with the 'clicked' image in it slides to the left. I've got the center ...
0
votes
1answer
53 views

jQuery fadeOut 'inline-block' div fadeIn “inline-block” div

Having some trouble getting my jQuery correct. Essentially I want to click on a div, .fadeOut the two other 'inline-block' divs next to it. Keep the 'clicked' div in the same position as well as ...
0
votes
3answers
92 views

DIV width to content of other DIVs, floating and centering all

I would like to achieve something that initialy looked simple to me but turned out to be not. My code is: <html> <head> <style> div { border-top: 1px solid black; margin: 10px; } ...
2
votes
4answers
79 views

Line breaks when using CSS “display:inline”

I have successfully managed to get a <p> follow a <h> on the same line, however I wish to repeat this on a new line, but the next <h> is following on from the last <p> - what ...
1
vote
3answers
37 views

Inline-block and a pixel at the bottom

I have a simple div with a display: inline-block; and a wrap to center it. It appears a pixel at the bottom of the content. Do you know why and how to get rid of it? Here is the problem to check: ...
2
votes
2answers
66 views

Inline buttons with images in floats

I've set up three divs as containers for my menu buttons. One will align buttons to the left side of the page, the other to the right, and the final one in the middle between both divs. This is what ...
0
votes
2answers
35 views

Weird lines when using display: inline-block; inside <a> tags

Whenever I create a div with display: inline-block; style inside an a tag, I get these weird lines at the bottom, that show up for no apparent reason at all. The problem seems to reproduce itself only ...
0
votes
2answers
50 views

Display-inline-block with z-index and jquery

Good morning everyone, I seem to be having a slight problem. I want a div to overlay another div(i.e. be on top) but zIndex is not working. I suspect the cause is the display: inline-block but I need ...
1
vote
0answers
64 views

Reveal hidden div via slideToggle without pushing down other divs

I ran into this issue while building my online design portfolio. It seems complex to me, but I know there is a way to do it, so I am frustrated that I can't find a solution. Please help! My design ...
0
votes
0answers
9 views

direction:ltr and overflow:scroll on inline-block not functioning properly

I have a problem with this code. The theory seems alright, but there seems to be some bugs arising when i enter direction:ltr. E.g.no scroll and other stuff... I need this to work on tablets with ...
1
vote
2answers
45 views

Access the parent selector from within a SASS mixin

I have set up a mixin for a button using display:inline-block. I am trying to get to the parent of whatever class that will eventually end up using the mixim, so I can add the font-size: 0px line ...
0
votes
2answers
30 views

What determines the width of an <ol> with {display:inline-block;}?

I have an <ol> element to which I'd like to apply a background color. I don't want the background color to cover the entire width of the <ol>'s parent but rather just its contents + some ...
0
votes
3answers
62 views

space between divs in html5 document

my question is simple. how can i remove the space between div tags? this is my html document: <div class="nav"> <div>option 1</div> <div>option 2</div> ...
1
vote
2answers
84 views

Display inline block elements from bottom up, with trailing elements on top

I have a <ul> of display:inline-block list items - they display as expected, wrapping around like text in a paragraph when they reach the end of the line. See example in which there are 6 ...
0
votes
1answer
55 views

inline-block not vertically aligning DIVs correctly

I've got a problem with Chrome. I'm trying to vertically-align more DIVS using display: inline-block; instead of floating them. The problem occurs when I'm imputing some text into them: for a ...
0
votes
0answers
70 views

CSS3 column-count: 2 + height: 100% cut off images

In the process of displaying a bunch of paragraph <p> elements with quite a few <div> mixed-in, so they are shown nicely with the effect of an opened book, I set <html> to html { ...
1
vote
1answer
517 views

IE10 line-height bug with display:inline-block; and overflow:hidden;

So, I've recently run in to a peculiar problem in IE10 (sigh). It appears that if you use display:inline-block; in conjunction with overflow:hidden; IE10 messes up your line-height. I tried fixing it ...
2
votes
2answers
41 views

Vertical positioning of inline-blocks

This question is kind of hard to explain with words, so I will link to a jsFiddle. jsFiddle. If you look at any of the links, you will see some boxes that are at different levels. These are supposed ...
0
votes
1answer
54 views

HTML DIV inline-block

I have this code: <div style="margin-top: 5px"></div> <div style="width:175px; height: 25px; margin: 0 auto; background-color:#fff;"> <div style="font-weight: bold; ...
0
votes
2answers
410 views

How to align social media icons in one row?

I managed to add facebook, twitter and g +1 social media buttons to my website in one row. But when I try to add the VK like button to the same row it just goes beneath the rest. I tried aligning ...
0
votes
1answer
24 views

HTML & CSS: Vertical centering of inline elements inside an inline-block

I've read about 20 questions and articles on vertical alignment/centering in HTML/CSS, but I'm still unable to get my specific case working a expected. Please have a look at ...
1
vote
0answers
94 views

How do I get in-line code with Jekyll and Pygments?

I'm using Markdown with Liquid tags to mark up some code for a Jekyll-generated site and would like to include some code that is both in-line (in a paragraph) and has coloured syntax (with Pygments), ...
0
votes
2answers
151 views

CSS div inline-block + img max-width

I've been looking for answer for some time now & was tinkering with it for a while but cannot seem to find solution. Probably it's easy as hell but I cannot wrap my head around it. I'v got image ...
1
vote
4answers
168 views

3 inline-block divs with exactly 33% width not fitting in parent

This is a common problem but I can't figure out why it happens. I have a parent div and inside that div I have 3 divs with width set to 33% (exactly, not 33.3%!) and display: inline-block. In Chrome ...
5
votes
3answers
125 views

CSS selector for line breaks

Suppose I have a few adjacent elements: <div class="container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> ...
1
vote
2answers
55 views

JavaScript as a robust hack for inline-block de-spacing

I'm keen to use inline-block extensively as part of a fluid, responsive design, rather than lots of float: left and clearfix hacks. Until HTML5/CSS3 provides a way of ignoring spaces, and everyone ...
0
votes
1answer
47 views

Using inline-block display without the content floating left

I want the width of a div element to be equal to the width of the content inside it, and also (and more importantly) that any content after this div does not start to the right of the div(as though ...
0
votes
2answers
55 views

CSS: floated elements give zero height on the containing element

I am confused by the fact that applying float to li elements seems to mean that the containing ul element has no height. You can see the problem demonstrated in this jsFiddle. Basically, I would ...
1
vote
2answers
69 views

Inline-block vs inline [closed]

The inline-block property is really great because it behaves like a block element (has border, height etc.), but still is inline. Now, shall I ever use the inline property instead of inline-block ...
2
votes
1answer
75 views

inline-block last-child element issue

I'm having trouble positioning last-child of inline-block horizontal scrolling site. In firefox everything looks ok, but in Chrome last child of articles is somehow pushed down, for about 18px. Of ...
5
votes
1answer
218 views

Fully expand this CSS inline-block div scan-line

I want this scan line effect to work properly. To reveal the text from left to right. As if the cathode-ray is burning it into the phosphors on the screen. The idea is to slide across black rows, ...
0
votes
0answers
41 views

Inline-block elements not appearing correct in chrome

I got an element that is supposed to have some columns and between each column a 'grip' handle to adjust the size of the column. I currently got this: http://jsfiddle.net/ZGaA6/ However, in chrome, ...
1
vote
4answers
139 views

HTML/CSS Inline-Block no float Divs within divs

I have 3 DIVs within a DIV. The boxes will have an image. Currently they are image placeholders for future. I would like to use display: inline-block; to line them up on the same line. For some ...
1
vote
3answers
114 views

Why does a block element inherit childs margin when changing to display: inline-block?

Heres the fiddle .. when I set <div class="two"> to display inline-block it subtracts the 16 px of top/bottom margin from the <p> and adds it to the divs content box height so it becomes ...
0
votes
2answers
53 views

inline block shrinking images

I'm trying to get my in-line blocks to shrink instead of wrapping. The images are arranged like this: AAA BBB CCCCCC as the window gets to be the width of C I want all of the images to ...
0
votes
0answers
153 views

IE8 issue with jQuery show() and inline-block

So, I'm running into an issue with IE8 where the outside div (in example below the blue div) is not growing when table rows are shown in an inline-block div. It works correctly in FF and Chrome. The ...

1 2 3 4 5 6