The CSS box model. http://www.w3.org/TR/CSS2/box.html

learn more… | top users | synonyms

0
votes
1answer
34 views

CSS boxes floating

Yes, sorry, I should had posted a picture. It looks like this though:Link I am trying to create two boxes with a box beneath them. To the right I want another box present. And I want it all to be ...
3
votes
2answers
40 views

Why does display:block not stretch buttons or input elements

I'm trying to understand the reason behind this problem: What's the underlying reason behind <button> or <input> elements not behaving like other elements when set to display:block! I'm ...
0
votes
2answers
40 views

CSS3 margins and 100% width/height declarations

I'm very surprised: there are tons of posts asking about 100% height situations, but the ones that include *margins in the child element don't yield any workable responses. Surely this is very ...
11
votes
2answers
122 views

Rotated elements in CSS that affects their parent's height correctly

Let's say I have a couple of columns, of which some I'd like to rotate the values of: http://jsfiddle.net/MTyFP/1/ <div class="container"> <div ...
1
vote
3answers
44 views

why does this div leave a margin at the bottom

I am currently in learning CSS and it seems I have a hard time understanding the box model. I have a very simple page layout: <!DOCTYPE html> <html> <head> ...
5
votes
2answers
88 views

Using box model to contain items within its parent div

Using the following HTML and CSS3 rules, I'm trying to make sure that the following criteria are adhered to: I have all of the criteria working except for item 1 where the children are exceeding ...
2
votes
2answers
38 views

Confused about display:inline and float:left

Suppose I have two elements: <span class="b">This is inline element</span> <div class="a"></div> .a { width:100px; height:100px; background: red; float: left; } ...
2
votes
5answers
54 views

Is the border color of an element affected by its background color?

I am re-studying CSS concepts in W3Schools. I am quoting what is written in this helpful website: Border - A border that goes around the padding and content. The border is affected by the ...
0
votes
1answer
44 views

Shrink Or Expand Margins With Window Resize

Here's the code I've been fiddling with: http://jsfiddle.net/denWG/3/ First, you'll need to expand the right column that contains the HTML and CSS. Notice how the grey container expands and contracts ...
6
votes
2answers
69 views

Setting border of containing div changes its size dramatically

Take this HTML. If you take out that "border: 1px solid" from the yellow box, its size changes a lot (it shrinks considerably). ...why? UPDATE: If I change the p as inline-block, the size stays the ...
2
votes
1answer
479 views

Rendering differences in chrome 26.0.1410.43 from older versions

My website was working properly in firefox opera and chrome (I don't have IE so I am not sure about that-since I am using fedora linux 18). After a recent update of chrome(at most a month old) the ...
0
votes
0answers
60 views

CSS box model in Firefox vs Safari: Sizing with percentages / height: 100%?

Let's take this HTML: <div id="work"> <div id="header"> <a href="index.html#content" class="backlink">Startseite</a> </div> <p>Lorem ipsum ...
0
votes
1answer
201 views

Data tables header width/alignment issue

I am having a problem with the data tables jquery plugin where my headers are not aligning properly with the table. I noticed that if I add cellspacing=0 to the table it will align correctly. However, ...
1
vote
2answers
1k views

Using box-sizing : border-box with Twitter Bootstrap, can we do it easily without breaking everything?

I have been using the "border-box box model" in my last projects. This has a lot of advantages that I won't explain here. But you can read about it here: Border-box in css-tricks Now I'm starting a ...
0
votes
1answer
41 views

How to write persistent CSS box rules?

According to this question, developers of Chrome changed display: -webkit-box to display: -webkit-flexbox However when I test it now (v25.0.1364), I see it's again changed and look what we have: ...
0
votes
1answer
43 views

Strange box behaviour with relative sizing when using overflow:hidden and display:inline-box

i am about to learn java-script and html. I am working on a little slide show for testing and getting a some experience. So here is my problem: I have 4 div boxes: <div ...
0
votes
2answers
60 views

Proper div sizing without using pixel values

My case is as follows. I have a div with two children divs. I'd like the 'event' div to be 300px of width and height. First requirement is to keep the size of the 'event' div when 'content' and 'bar' ...
0
votes
0answers
31 views

FaceBook Follow button width in Internet Explorer 7/8/9

I'm integrating a Facebook Follow button to a site, and am using the fixed width and overflow hidden trick to hide the FB counter. It works for FF, Opera, Safari & Chrome, but not with (surprise, ...
0
votes
1answer
93 views

Firefox doesn't like margin auto with flex box model

I am trying to center the header > section. It works fine with chrome and opera but firefox push to the left side. I created a class called .body with width: 960px and margin: 0 auto. It doesn't ...
1
vote
1answer
78 views

CSS - Box Model - Works only in Chrome

After creating a simple fluid layout with Bootstrap's css, I've noticed that the layout does not line up on the right side on every browser except Chrome. Take a look at this jsFiddle: ...
-1
votes
1answer
78 views

How to use box-sizing: border-box with 2 inline elements?

I am trying to mantain 2 elements inline maintaining the width of 100% with borders and paddings, I tried to use box-sizing but are not working. What is wrong? HTML: <div class="content"> ...
0
votes
1answer
63 views

How can I fix my div overlay for Firefox?

I have this jsfiddle where I put a "cursor" div on top of a table. A function moves the cursor around by manipulating the CSS attributes left, top, width and height. In Chrome 24 and MSIE 9.0, the ...
1
vote
1answer
270 views

jQuery UI Button inside table cell - rendering issue

I'm using jQuery button, in particular this example: http://jqueryui.com/button/#splitbutton I've placed this markup incide table td for each row: <div> <button ...
2
votes
5answers
107 views

CSS Issue - Why 4 * 25% is NOT 100%

I've been looking around all over the posts and see lots of discussions similar to mine but no exact answer unfortunately. So let me describe the case and ask you why that happens, what is the reason ...
2
votes
1answer
288 views

jQuery - click() not firing in IE7 on a div element

I'm building a "add tag" widget and I'm having a problem getting my click handler to fire in IE7. The widget works almost exactly like adding tags in Stack Overflow... as you type, it suggests tags. ...
2
votes
2answers
76 views

HTML box model with margins

There's something in the box model of HTML block elements that I can't grasp. Please have a look at the following jsFiddle: http://jsfiddle.net/5b7X2/1/ There is an outer and an inner <div>, ...
4
votes
2answers
99 views

Padding vs children with margins

Let's just start with saying I understand the box model. Throughout my short time as a developer, I've tried to stick very closely to semantic html and use responsive design practices. I recently ...
0
votes
2answers
84 views

box model with anchor and button

I have the following fiddle: My Button Bar My problem is a common one, though inline-block is not helping like I hoped. How do I make the anchor and the button the same size. The blue buttons need to ...
1
vote
2answers
265 views

Why is the Javascript width of a table cell one pixel too short?

When you apply border-collapse: collapse; to a table to "meld" its cells' borders together, it starts causing problems in determining the widths of table cells in Javascript. For example, look at ...
1
vote
0answers
63 views

Box model: lost parent element scrollbar

The first sample shows scrollbars correctly: <!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> #parent {width:102px; height:101px; ...
2
votes
4answers
384 views

Why does a negative bottom margin on an element decrease the height of parent of that element?

This might be due to margin collapsing and I know about margin collapsing, at least how it affects adjacent elements, but I don't understand how it works on nested elements when negative margins are ...
4
votes
1answer
189 views

IE6/IE7 Input Submit Box Model Dilemma

Some strange bug I came accross today when creating a generic button class to style everything from divs to inputs. It seems that most browsers use a different box model when it comes down to ...
0
votes
3answers
71 views

HTML/CSS - Bigger box within a smaller one

I thought if I make a box bigger than its container, the box will be restricted to the size of the container and there will be scroll bars around it. http://jsfiddle.net/Amnesiac/ekT3h/ But the box ...
1
vote
1answer
92 views

What are the pitfalls of using box-sizing: border-box? [closed]

I was recently looking at the box-sizing property again. I feel like border-box is actually a more appropriate model. I want my boxes to include the padding and border without needing to account for ...
2
votes
3answers
337 views

what is a non-replaced inline element?

Encountered the following while reading the height property of CSS2 specification: Applies to: all elements but non-replaced inline elements, table columns, and column groups I understand what ...
8
votes
1answer
292 views

css opacity causing layout issues in IE9

I came across a very interesting issue in IE9. When using filter: alpha(opacity=) or -ms-filter css property on a wrapping div the box model of the inner block elements get corrupted. In other words ...
4
votes
2answers
74 views

Physical Width vs Content Width?

I am learning CSS and I am having trouble with the concept of the physical width and content width. Sites seem to refer to them, without ever truly explaining the difference. I know it has to do with ...
0
votes
1answer
634 views

Box model properties (margin, padding) for SVG element. Are they supported?

Is it possible somehow to apply html box model properties to basic shape elements in SVG? For example apply margin to <rect> element. I found the explanation that it's not possible: The ...
0
votes
3answers
459 views

CSS DIV scrollbar and background with min-width

I have a header DIV which is 1400px wide and contains a background image which must always stay centered. I have a site that needs to be 960px wide. When I resize the browser (shrink it), I don't ...
1
vote
3answers
145 views

Box model interpretation of table row in Firefox

First of all: tables, not my design, my apologies. We have this website where the products on sale are being displayed in a table-layout. The website is already live, but it appears that it hasn't ...
1
vote
1answer
91 views

box-sizing + child object

This has been annoying me a lot today. What I want to do it control the size of a child object using 100% of the parent minus a margin, say 10 px, using the box-sizing method. I know that it is ...
7
votes
3answers
139 views

Why do HTML <buttons> adhere to the old IE5 box model in all modern browsers?

I've had a weird issue with a button and some CSS, I noticed that it was behaving as if it adhered to the old IE5 box model, where height = height + padding. After some browsing I came across this ...
2
votes
1answer
41 views

text alignment relative to box

I want to align my text according to the box in which the text is. Look at the following html code. Html: <div class="box"> <div class="cont"> Hello World!!! </div> ...
0
votes
2answers
762 views

Responsive Design: Using pixel width divs within fluid design

The setup: I have a sidebar and a main content column. The sidebar has a 33% width and the main content has a pixel width that fills the rest of the space. I want the main content to stay at its ...
-1
votes
1answer
69 views

CSS3 element width in jQuery

I have run into a little issue with placing divs inside a jQuery UI tabbed div to which I cannot find a logical solution (the illogical one I have in place and it works). The problem is this I have ...
0
votes
3answers
620 views

Unable to give spaces between divs when used display:table-cell

I want to align 3 divs, next to each other. so I used display:table to the parent div and display:table-cell to the inner 3 divs. Width of first 2 div is known and width of 3rd div is unknown. So the ...
0
votes
0answers
43 views

Firefox Not Properly Displaying Margins for Flexible box model

I am building a site using the flexible box model through progressive enhancement, and I am encountering troubles setting margins properly in Firefox. It appears that no margins are being calculated ...
0
votes
0answers
90 views

Does flexbox layout require block display?

I'm building a website using the flexbox model, and I'm quite confused as to what (1) the W3C is referring to as "block-level elements" here and (2) whether it is best practice to leave the default ...
5
votes
3answers
368 views

How is CSS em measurement used for height or border-radius measured?

I understand that the "em" measurement is a relative unit for font-size, relative to the font-size of the containing element if it's specified in an absolute unit like px, or to the default font-size ...
0
votes
0answers
128 views

IE8 document height takes all page height

I need to know the height of all <html></html> element in page. All browsers calculate height of all html content to get documentElement height. But IE8 just takes all available height of ...

1 2 3 4