Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
10answers
13k views

Expand div to take remaining width

I want a two column div layout, where each one can have variable width e.g. <div style="float:left">Tree</div> <div style="float:left">View</div> I want 'view' div to expand ...
14
votes
9answers
5k views

xHTML/CSS: How to make inner div get 100% width minus another div width

I have 2 nested divs inside outer one, which has width:100%. Both nested divs should be in one line and first should get it size from it's contents: <div id="#outer" style="width:100%; ...
10
votes
7answers
905 views

100% height for multiple divs

I usually have my structure laid out something like this: <div id="all"> <div id="page"> <div id="header"></div> <div id="content"></div> <div ...
8
votes
2answers
736 views

Fluid width with equally spaced DIVs

I have a fluid width container DIV. Within this I have 4 DIVs all 300px x 250px... <div id="container"> <div class="box1"> </div> <div class="box2"> </div> ...
8
votes
5answers
141 views

Best method to fit a child div to its parent's width?

I'm looking for a easy way to fit a child div into it's parent's width. Most solutions I've seen here are not cross-browser compatible (eg. display: table-cell; isn't supported in IE before version ...
8
votes
4answers
1k views

CSS - Equal Height Columns?

In CSS, I can do something like this: But I've no idea how to change that to something like: Is this possible with CSS? If yes, how can I do it without explicitly specifying the height (let ...
7
votes
4answers
316 views

Looking for a way to simulate irregularly shaped DIVs

I'm developing a website for a designer who is, shall we say, more oriented towards print designs than for the web. Their page design for this site gives me a content area that is irregular. If this ...
7
votes
2answers
1k views

Why certain DOCTYPE declarations cause 100%-height tables and divs to stop working?

It seems to me that some DOCTYPE declarations in IE (6-8) may cause the browser to ignore height="100%" on tables and divs (style="height:100%") E.g <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
6
votes
3answers
222 views

How to detect DIV's dimension changed?

I've the following sample html, there is a DIV which has 100% width. It contains some elements. While performing windows re-sizing, the inner elements may be re-positioned, and the dimension of the ...
6
votes
4answers
114 views

Centering in IE5/6/7/8, and FF

I'm trying to centre the content of a div such that the display is correct in IE 5,6,7 and 8, as well as FF. <div id="YoutubeClip"> <h3>Subscribe on YouTube!</h3><br> ...
6
votes
2answers
345 views

CSS layout that fills available space

I'm trying to do a seemingly simple webpage layout, but I'm hitting a wall. I'd like to do everything purely with CSS (no tables to muck things up, and no javascript dynamically resizing things) ...
5
votes
4answers
275 views

CSS positioning divs

I'm always weak when it comes to positioning divs, but this situation is slightly difficult to find a solution to online. I'm trying to position boxes like so: _ ___ _ |_|| ||_| _ | | ...
5
votes
10answers
2k views

Prevent linebreak after </div>

Is there a way to prevent a line break after a div with css? For example I have <div class="label">My Label:</div> <div class="text">My text</div> and want it to ...
5
votes
9answers
5k views

How do I keep two divs that are side by side the same height?

I have two divs side by side. I'd like the height of them to be the same, and stay the same if one of them resizes. I can't figure this one out though. Ideas? Edit: Here's a mockup I did in notepad: ...
5
votes
6answers
2k views

side by side divs

I've got 4 divs inside a parent div. To get them to appear side by side, I've given all 4 divs a style with float:left. The divs do appear side by side, but the parent div's height does not grow to ...
5
votes
4answers
492 views

I am looking for a clean HTML tutorial

I've been doing web programming from 1999 to 2004 and it looks like a lot has changed. The layout is no longer done with tables, but with DIVs, etc... I am looking for a tutorial that combines CSS ...
5
votes
2answers
13k views

Div w/ Border Images

What is a good way to set up a single container div with some border images surrounding it (in my case only on the left, bottom, and right sides)? I have it centered at the top of the page, ...
4
votes
5answers
125 views

Compact arrangement of DIVs in two directions

It is easy to arrange DIVs horizontally with float. For example: <div style="width: 500px;"> <div style="float:left; width: 200px; height: 100px; background-color:Yellow;"></div> ...
4
votes
5answers
89 views

Create 5 DIV with 1 DIV in the center

I want to create DIV like the picture below. 1 Div on the center and 4 div around the center div. Could anybody help??I've tried but I couldn't do it. .mid{ width:700px; height:400px; ...
4
votes
1answer
461 views

Creating two Column layout using CSS for ASP.NET MVC3 create view

I am new to CSS. I have a create records page and it has html elements like textboxes, dropdown lists, multiselect lists. The View create.html is as follows : @using (Html.BeginForm()) { ...
4
votes
2answers
156 views

Why does order of float div and non-float div matter only in some cases?

I have a similar problem as CSS Auto Margin pushing down other elements: A right floating sidebar gets pushed down below the main non-floating content div. The answer proposed works: just reverse the ...
4
votes
2answers
373 views

Horizontal scroll in DIV with many small DIV's inside (no text)

Hi all experienced out there. I'm not so good at English but I'll try to describe my problem. I'm trying to learn this with DIV's and its positions, and has stuck with a small thing. I will try to ...
4
votes
1answer
481 views

How to bring a div in front of a fullscreen flash

Is it possible to bring a div in front of a flash movie that is in full screen? How can I do this if it's possible? I want to make a little box in my site and put some links in it and position it on ...
4
votes
2answers
2k views

100% container height issue - HTML5 / CSS2/3

Simple problem, though apparently not a simple solution. Example here: http://myhideout.eu/new/ Basically the site consist of two columns, though with no wrappers or anything like it, as I'd really ...
4
votes
3answers
299 views

Text expands outside the div it's inside?

I've got this code: <html> <head> <style type="text/css"> body { text-align: center; } #content { width: 60em; margin: 0, auto; background-color: #CCC; } ...
4
votes
1answer
737 views

Fit a textbox and a button inside a div

How can I put <input type="text"/> and <input type="button"/> in one line, like this... ...so that they fit inside their parent (<div> for example), textbox taking maximal possible ...
4
votes
2answers
197 views

a element not showing background image

HI guys. I having a problem, although I dont understand why. I am trying to add a backgroung image for a "a" element, but it would only show part of the image ( so if I have Home as value, whatever ...
4
votes
10answers
3k views

How to organize page layout with div's

I have a question for the more experienced programmers here. How can I best organize the div's to have like a left side, a middle side and a right side? I am doing my website now for a while and I ...
4
votes
4answers
4k views

How do I center a div and make it expand around the divs inside of it?

I have a page that I want centered, with a background and a border around the entire content. I made a div and set it with the background color and the border settings I want. Problem is that it has ...
3
votes
1answer
51 views

CSS float and div block position

I have this problem then I try to float div left, each block contains same div class (member). Block goes up if it is on the right hand side, but doesnt work on left. Any thoughts? .member { ...
3
votes
4answers
88 views

Div height 100% excluding header

Ok so I know this topic has many questions, but I still haven't been able to figure exactly how to make this work. This is close to the problem, but its not working for me. I want my page to have ...
3
votes
3answers
77 views

Are there benefits of creating tables using “display: table;” style rather than using old school “table” tag?

Are there benefits of creating tables using "display: table;" style rather than using old school "table" tag ? And I know that IE7/8 don't support "display: table;". Thanks!
3
votes
3answers
103 views

CSS two elements auto-height inside one block

I'm trying to put two blocks into one fixed-height block to create the following layout: ------------------------ UL (initial height=0), grows on element add until maximum height reached scroll ...
3
votes
2answers
79 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
3answers
118 views

HTML/CSS issues

I have a site that has the following structure: <div id="page_wrapper"> <div id="header"></div> <div id="content-wrapper"></div> <div id="footer"></div> ...
3
votes
5answers
129 views

3 floating divs with center dynamic width

Alright so my problem is that I can't get the center div to dynamically set its width based on browser width and still float in between the two divs. <style type="text/css"> ...
3
votes
1answer
1k views

jQuery <div> background image full size stretch

Basically what I'm trying to do is recreate this site with pure HTML, CSS and jQuery. http://www.mcmahonstudios.com/ At present the site is not doing too well in search results, obviously because ...
3
votes
5answers
251 views

Div side by side

So I have been trying to put a div side by side here but I have run out of options. <div id='body'> <div id='header'> </div> <div id='container'> <div ...
3
votes
2answers
156 views

float variable height containers

So i have x amount of "blocks" that I want to float left.. Like this : A B C D E F G H BUT, if B is twice as long as the rest, for example, there would be white space between A & E, C ...
3
votes
1answer
791 views

How do I make an ASP.NET ListView repeat grouped items horizontally?

I have an ASP ListView displaying some items with GroupItemCount set to 3: A D G B E H C F I i.e. it groups them vertically in columns. How do I make it display so that it groups horizontally ...
3
votes
3answers
299 views

how to make “overflow: hidden” work for all browsers

Problem: I am currently creating a webpage layout using divs and css rather than an HTML table layout. I want, of course, for this to be able to operate across all major browsers. I have a pane for ...
3
votes
5answers
1k views

CSS Floating Divs At Variable Heights

I have infinite number of divs of a 100px width, which can fit into a 250px width parent. Regardless of height, I need the divs to be displayed in rows, as shown in the image. I've tried resolving ...
3
votes
5answers
213 views

'Stretching' a div to the edge of a browser

I'm trying to achieve a fixed width centred layout with headings that 'stretch' to the edge of the users browser. Like this... Any ideas how I can achieve this?
3
votes
5answers
109 views

What are the best guides or resources for creating CSS/DIV layouts?

We have found a few online, but they all appear a bit dated. Curious what people consider the best resources for creating and managing CSS/DIV layouts (i.e., layouts done purely in CSS with DIVs -- ...
3
votes
2answers
317 views

Multiple CSS sheets - Container div background is not on top?

I'm giving new life to a boring web page. Please see what my template should look like here: Correct body page Pretty page! Now - when I go to add my existing background / menu/ footer - I am ...
3
votes
5answers
219 views

How can I horizontally and vertically center an <img> in a <div>?

I don't want to center a div, I want the contents of a div to be centered. I would like horizontal and vertical alignment. Sorry, if this is too easy or whatever, but this is kind of a hassle to get ...
3
votes
4answers
131 views

How do I Achieve this layout without fighting CSS

I understand that there are several questions here about this problem, but I have a rather unique predicament. I'm working on a template that has to include certain tags, and has to work with other ...
3
votes
2answers
355 views

creating 10.000 connected hexagon page?

I am trying to create 10.000 hexagon connected each other like bee combs.I want to create all of this as a element that after I can import some thing to inside them.But for connecting hexagons ...
3
votes
3answers
109 views

Easy equal height DIVs without JavaScript possible?

I've worked mostly with table-based layouts up to this point, but since it's considered a no-go thing of the past now I've taken on the task of learning DIV-based layouting. One of the most annoying ...
3
votes
2answers
210 views

JQuery/JavaScript div tag “containment” approach/algorithm?

Background: I've created an online circuit design application where div tags are containers that contain smaller div containers and so forth. Question: For any particular div tag I need to quickly ...

1 2 3 4 5 13