Tagged Questions
The box-model tag has no wiki summary.
103
votes
8answers
48k views
CSS 100% height with padding/margin
This has been driving me crazy for a couple of days now, but in reality it's a problem that I've hit off and on for the last few years: With HTML/CSS how can I make an element that has a width and/or ...
29
votes
7answers
14k views
Can I stop 100% Width Text Boxes from extending beyond their containers?
Lets say I have a text box that I want to fill a whole line. I would give it a style like this:
input.wide {display:block; width: 100%}
This causes problems because the width is based on the ...
26
votes
10answers
13k views
jQuery: Get height of hidden element in jQuery 1.4.2
I need to get height of an element that is within a div that is hidden. Right now I show the div, get the height, and hide the parent div. This seems a bit silly. Is there a better way?
I'm using ...
19
votes
8answers
14k views
CSS: Textbox to Fill Parent Container
I'm trying to let an <input type="text"> (henceforth referred to as “textbox”) fill a parent container by settings its width to 100%. This works until I give the textbox a padding. This is then ...
18
votes
4answers
362 views
Why is the W3C box model considered better?
Why do most developers consider the W3C box-model to be better than the box-model used by Internet Explorer?
It's very frustrating developing pages that look the way you want them on Internet ...
12
votes
2answers
260 views
What is the point of CSS collapsing margins?
The CSS2 box model tells us that adjoining margins collapse.
I find it quite annoying, being the source of many design bugs. I hope that by understanding the purpose of collapsing margins, I will ...
10
votes
3answers
1k views
Firefox 3.6.12 vs CSS box-model
Ever since I updated FF to 3.6.12 (or at least that's when I noticed the issue), I am dealing with an unusual situation. While Chrome and Opera use the content-box box model, Firefox seems to have ...
6
votes
1answer
59 views
Why do a div and a button with the same styles render at different sizes?
I have a page with some clickable <div> elements, and I want to change them to <button>s instead to make it easier to identify them via jQuery. But when I change the <div>s to ...
6
votes
2answers
181 views
A few extra pixels of height - where could they be coming from?
On, e.g., this link: http://4ad.com/releases/20949, if you look at the album cover image in the top right part of the page, the black border is not quite square: there are a few extra pixels of height ...
5
votes
7answers
126 views
How can I prevent a <button> shrinking to the size of it's content?
I have two elements in a container:
<div class="container">
<span>This is a div</span>
<button>This is a button</button>
</div>
Styled as follows:
span, ...
5
votes
5answers
501 views
Why do the CSS width and height properties not adjust for padding?
So first a bit of meat to set the scene:
HTML
<div id="container">
<div id="inner">test</div>
</div>
CSS
#container {
width:300px;
height:150px;
...
5
votes
2answers
3k views
Inconsistent box model between <input type=“submit”/> and <input type=“text” />
After much frustration, I've realised that <input type="submit"/>s have a border-box box model, whereas <input type="text"/> has a content-box box model. This behavior is present in IE8 ...
4
votes
7answers
2k views
Is there a reason why inner padding adds to the size of an element?
I was very surprised when I found that a <div> with a size of - say - 200px becomes 220px wide if you give it 10px padding. It just makes no sense to me, the external size should not change when ...
4
votes
7answers
16k views
In-line CSS IE hack
Is it possible to create, for instance, a box model hack while using in-line CSS?
For example:
<div id="blah" style="padding: 5px; margin: 5px; width: 30px; /*IE5-6 Equivalent here*/">
...
3
votes
2answers
80 views
CSS Margin calculation
While i do understand the overall CSS box model in theory like padding, border, margin, my understanding is restricted to this individual parts.
I often gets confused how this is actually rendered by ...
3
votes
2answers
229 views
Making sense of CSS Lint warnings
I am writing the CSS for our website and I just ran it through CSS Lint. I'm struggling making sense of quite a few of the warnings so would greatly the community's assistance.
Don't use IDs in ...
3
votes
2answers
160 views
What is the advantage of W3C box model compared with IE5 box model?
I think the IE5 box model is more similar to human's logic about box's concept,withing including padding and border.It can defined the box width and height directly.
In cases in which you have an ...
3
votes
4answers
159 views
Why do inputs and selects use different box models?
It appears (at least in IE 8 and Firefox 3) that for <input> elements the width refers to the content, but for <select> elements the width refers to the content + borders. I am explicitly ...
3
votes
3answers
269 views
Why does border affect the containing block size in CSS?
I understand that the height of a box in CSS is the height of the contents, excluding the margin and padding, but why with this sample, if you uncomment the border: line in the containing div, does ...
3
votes
5answers
508 views
Pixel gap in ie
I have four Div placed using absolute positioning, each of them is a border of a rectangle they form once grouped together, in order to look like if a Dom element on the page is selected (this mimic ...
3
votes
2answers
3k views
slideDown and slideUp errors
I am new to jQuery and already I'm seeing problems with the built in
slideDown()/slideUp() animations. I'm using a flexible width
element, and when I use the function, the element does not return to
...
3
votes
4answers
6k views
CSS box model (margins and padding) for vertical spacing between paragraphs
How should CSS 'margin' and 'padding' be used for vertical inter-paragraph spacing:
Can the vertical space between paragraphs be defined using padding and/or using margins?
If it can be done with ...
2
votes
1answer
52 views
CSS Box-model seems to be broken in Chrome 15 (latest stable release)
I thought the days of checking box-model issues between modern browsers were long gone...
I have been having problems getting Chrom[e|ium] to display my website correctly, and I've managed to create ...
2
votes
2answers
52 views
How can you expand a DIV horizontally to wrap its widest child?
G'day,
The simplest example of what I'm trying to do can be found here: http://jsfiddle.net/YxwQW/
How can I expand the red parent div to wrap around it's child div when it's percentage-based width ...
2
votes
3answers
65 views
Using 'height:100%' or 'width:100%' when you have padding or margins on non-ie browsers?
Let's say I have to following code -
<body>
<div id="outerdiv"
style="border: 1px solid blue; height: 150px; width: 150px;">
<div id="div" style="height: 100%; border: 1px ...
2
votes
2answers
295 views
Android's box model
Rather surprised that I haven't been able to found detailed information about Android's box model. I mean how padding, margins, gravities, etc. they all interact together.
Other than this note about ...
2
votes
1answer
46 views
margin-top on a block level element within another
Why does the outer block level element in the code below also have the margin-top applied to it?
div#a {
width: 175px;
height: 100px;
background-color: #333;
}
div#a span#b {
...
2
votes
1answer
645 views
CSS: 100%-height/width DIV inside a bordered div creates vertical, but not horizontal scrollbars
Hello and thanks for listening. This is not an urgent question for me, I'm just curious about why the following code does what it does. I wanted to have a border (or margin) around the visible page, ...
2
votes
2answers
189 views
css margin-top property only works if border is declared
Well,
It has been sometime since this keep popping in and I never had the time to ask why:
so here is my very simple HTML:
<!DOCTYPE html>
<html>
<head>
<meta ...
2
votes
1answer
127 views
Why do a div and a table behave differently when given width=100% here?
Here's my code, reduced to the relevant parts:
<html><head><title></title>
<style type="text/css">
body { background-color: #fff; }
#titlebar{ border: solid 1px black; ...
2
votes
1answer
620 views
Box-Model for inline vs. block elements within a table td
I'm using a table to display tabular data, but I need to get the sizing pixel-perfect so that the contents don't end up taking more vertical space than I have available. Also, layout using css alone ...
2
votes
1answer
355 views
Why won't the vertical margins between <p> and <hr> collapse in IE7
Perhaps I am missing something, but I can't explain this from any IE bug I know of. Why in this example do the margins of the <p> and <hr> elements collapse as expected in standards ...
2
votes
1answer
140 views
How does box-shadow property affect the box-module is css?
Does adding a box-shadow property to a div change it's dimension? For example, what is the correct width in compliant browsers for the div MyDiv?
202px (borders and width)
203px (borders width and ...
2
votes
1answer
199 views
input type=submit not following box-model
I have more of theoretic question: do you know why in the world, input type=submit acts on different box-model even if I tell it do display:block?
(just a note: nothing I couldn't go around... It ...
2
votes
2answers
572 views
CSS: Bottom block resize forces top block to shrink (inside a fixed-size container)
I search for a CSS solution for the following problem. Inside a container we have two blocks, vertically aligned so, that they fill the the whole area of the container, do not overlap and as the ...
2
votes
1answer
981 views
How to emulate window title bar in CSS/HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style>
table {border: 1px solid black; width: 500px}
...
2
votes
5answers
1k views
100% width header doesn't fill browser
When the browser window is small enough to force a horizontal scrollbar and you scroll right the background color of the header ends before the edge of the browser. I am using a css class.
.s_header ...
2
votes
6answers
2k views
HTML Strict & CSS: How do I close the gap?
In the following web page, there is a gap of a few pixels between the image and the div. (I've tested in Firefox 3 and Safari 4.)
How can I close the gap?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML ...
2
votes
2answers
1k views
Why does Firefox use the IE box model for input elements?
Try the following simple example:
<html>
<head>
<style>
div, input{
border: 1px solid #000;
margin: 2px;
padding: 3px;
width: 100px;
}
</style>
</head>
...
1
vote
5answers
68 views
Why this behaviour (on ALL browsers) with margin-top?
This is my code :
HTML
<div class='father'>
<div class='son'>Son</div>
</div>
CSS
.father
{
background-color:blue;
}
.son
{
margin-top:50px;
...
1
vote
0answers
32 views
How to make a aspect-ratio preserving resizable div with only css or webkit vendor-specific css
I'm making a Chrome web app using the flexible box model, but I've gotten stuck on a (horizontal) scrollable window where I have a whole bunch of featured items.
I want to make the featured items ...
1
vote
0answers
84 views
object tag box model (width & padding) in Firefox 6
Hello I'm wondering why does my Firefox keep applying a wrong (?) box model to my video embeds? It doesn't happen on Chrome.
The same CSS rules should apply, but if the object tag has data="whatever" ...
1
vote
2answers
160 views
jQuery how to get innerWidth but without the padding?
From the docs, innerWidth does almost what I need:
"Gets the inner width (excludes the border and includes the padding) for the first matched element."
I need to know the width excluding the ...
1
vote
4answers
81 views
CSS Box model width problem
I am newbiew to css.
Please have a look of this simple two column layout first.
http://www.vanseodesign.com/blog/demo/2-col-css.html
I want to ask why the width of content + width of sidebar =/= ...
1
vote
2answers
164 views
What causes the “user agent stylesheet” to use “border-box” instead of “content-box” for box-sizing?
I'm under the impression that the user agent stylesheet in browsers such as Safari, Chrome and Firefox is something that is internal to the browser and can't be directly modified (rather a style ...
1
vote
3answers
219 views
Text input with 100% width inside a td expands/continues outside the td
Here is the live demo
I'm trying to put a padded text input inside a td, and I want it to occupy 100% of the width, but it goes outside of the td.
I don't understand why that happens, anybody knows?
...
1
vote
4answers
75 views
gap between two 50% width divs
I have a container <div> with a width of 181px.
I have two child <div> elements in my container div each with a width of 50%.
My problem is that each of my child <div> elements has ...
1
vote
1answer
101 views
Which CSS box model is implemented on iPhone/iPad Safari?
What is the CSS box model which is implemented for iPhone/iPad Safari?
I mean the calculations for border/padding/margin with respect to the overall box width?
1
vote
0answers
158 views
CSS3 Flexible Box Model and Fixed Aspect Ratio
All the examples I could find of flexible box model show stuff expanding either in the horizontal direction or the vertical direction. I could not find out how to let things flexibly expand while ...
1
vote
1answer
328 views
Anchor tag around fluid image in Internet Explorer 8
I'm having some trouble with a fluid layout (with images using max-width:100%) in Internet Explorer 8. The problem comes when I want to wrap an anchor tag around a flexible-width image and margins, ...