Tagged Questions

The <div> tag defines a division in an HTML document. It is often used to group content for formatting with styles and for content which cannot be semantically described with any other element.

learn more… | top users | synonyms (1)

104
votes
11answers
79k views

Make a div fill the remaining screen space

I am currently working on a web application, where I want the content to fill the height of the entire screen. The page has a header, which contains a logo, and account information. This could be an ...
75
votes
10answers
149k views

Creating a div element in jQuery

How do I create a div element in jQuery?
55
votes
5answers
111k views

CSS div element - how to show horizontal scroll bars only?

I have a div container and have defined its style as follows: div#tbl-container { width: 600px; overflow: auto; scrollbar-base-color:#ffeaff } This gives me both horizontal and ...
54
votes
13answers
17k views

How do you get the footer to stay at the bottom of a Web page?

I have a simple 2-column layout with a footer that clears both the right and left div in my markup. My problem is that I can't get the footer to stay at the bottom of the page in all browsers. It ...
53
votes
3answers
120k views

How to replace innerHTML of a div using jQuery?

How could I achieve the following using jQuery, that is, document.all.regTitle.innerHTML = 'Hello World'; where regTitle is my div id.
51
votes
18answers
20k views

How to prevent long words from breaking my div?

Ever since switching from TABLE-layout to DIV-layout, one common problem remains: PROBLEM: you fill your DIV with dynamic text and inevitably there is a super-long word that extends over the edge of ...
44
votes
11answers
1k views

Am I suffering “divitis”? (CSS especialist needed)

I've read lots of articles that condemn the excessive use of divs. I have a feeling that I might be doing that in the following mark up: HTML: <div id="header"> <div ...
39
votes
5answers
24k views

Set cursor position on contentEditable <div>

I am after a definitive, cross-browser solution to set the cursor/caret position to the last known position when a contentEditable='on' <div> regains focus. It appears default functionality of a ...
38
votes
5answers
11k views

Click through a DIV to underlying elements

I have a div that has a transparent background, and a border - sort of like an actual window, window-frame, and transparent walls. Under this, I have more elements. Currently, I'm able to click the ...
37
votes
14answers
51k views

How do I force a DIV block to extend to the bottom of a page even if it has no content?

I'm trying to get the content div to stretch all the way to the bottom of the page but so far, it's only stretching if there's content to display. The reason I want to do this is so the vertical ...
27
votes
8answers
50k views

Div 100% height works on Firefox but not in IE. What to do?

I have a container div that holds two internal divs; both should take 100% width and 100% height within the container. I set both internal divs to 100% height. That works fine in Firefox, however in ...
24
votes
14answers
1k views

Why use tables to structure your layout?

looking at the soure code for stackoverflow, i noticed they have used tables and inline CSS quite a bit. also something i found odd was use of inline table attribute formatting. <table ...
22
votes
15answers
5k views

Why should I use 'li' instead of 'div'?

I'm not sure why I need to use ul-li vs simply using divs when listing items. I can make both look exactly the same so where is the functional advantage to creating an unordered list vs lining up ...
20
votes
10answers
16k views

is a DIV inside a TD a bad idea?

It seems like I heard/read somewhere that DIVs inside of TDs was a no-no. Not that it won't work, just something about them not being really compatible based on their display type. Can't find any ...
20
votes
6answers
26k views

How to create div to fill all space between header and footer div

I'm working on moving from using tables for layout purposes to using divs (yes, yes the great debate). I've got 3 divs, a header, content and footer. Thea header and footer are 50px each. How do I ...
19
votes
3answers
16k views

SPAN vs DIV (inline-block)

Is there any reason to use a <div style="display:inline-block"> instead of a <span> to layout a webpage? Can I put content nested inside the span? What is valid and what isn't? Thanks! ...
18
votes
12answers
25k views

CSS: div id VS. div class

what's the difference between DIV class and DIV Id when it comes to css, is it right if I will use DIV Id? I see different developers doing this in both ways, and since I'm self taught, I've never ...
17
votes
7answers
18k views

clear all divs' contents inside a div

I have a div <div id="masterdiv"> in which i will have several child divs. For example: <div id="masterdiv"> <div id="childdiv1" /> <div id="childdiv2" /> ...
17
votes
3answers
15k views

What jsf component can render a div tag?

Eg h:inputText will render a "input type='text'". What jsf tag can render a "div" tag?
17
votes
5answers
32k views

How to scroll to an element in jQuery?

I have done the following code in JavaScript to put focus on the particular element (branch1 is a element), document.location.href="#branch1"; But as I am also using jQuery in my web app, so I ...
16
votes
8answers
1k views

Center a div in CSS

I'm trying to center the newsslider (in the div bottom-container) on this page: http://www.luukratief-design.nl/dump/parallax/index.html I already have text-align: center; Still it does not work. ...
16
votes
8answers
33k views

How to Force Child Div to 100% of Parent's Div Without Specifying Parent's Height?

I would assume this is possible, but i just cant figure it out.. i have a site thats basic structure is set up as follows. <div id="header"></div> <div id="main"> <div ...
15
votes
9answers
862 views

Is there a difference between <div /> and <div></div>?

Ran into a problem on my web page where the footer in the master page wasn't displaying correctly for one particular page. On that page, I had a <div style="clear:both" /> at the bottom. After ...
15
votes
11answers
23k views

CSS Layouts - How to position two divs horizontally within another div

I haven't played with CSS for too long a time and am without references at the moment. My question should be fairly easy but googling isn't bringing up a sufficient answer. So, adding to the ...
15
votes
9answers
37k views

DIV with overflow:auto and a 100% wide table problem

I hope someone might be able to help me here. I've tried to simplify my example as best I can. I have an absolutely positioned DIV, which for this example I've made fill the browser window. This div ...
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%; ...
14
votes
6answers
11k views

Is div inside list allowed?

I know that DIV inside LI isn't allowed, but I've seen it lately on many "big" websites like: Smashing Magazine, Web Designer Wall... etc. I try to validate sites, and they have errors, but nothing ...
14
votes
4answers
16k views

How do you easily horizontally center a <div> using CSS?

I'm trying to horizontally center a <div> block element on a page and have it set to a minimum width. What is the simplest way to do this? I want the <div> element to be inline with rest ...
13
votes
5answers
32k views

How to align a <div> to the middle of the page

I have a div tag with hight set to 800px, I want that when the browser width is greater than 800px it shouldn't stretch the div but it should bring it to the middle of the page.
13
votes
6answers
30k views

Drop shadow on a div container?

I have a searchbox with auto-suggest that pops a div up underneath it with multiple search string suggestions (like google). Is it possible to have drop shadow on the auto-suggest box with CSS or ...
13
votes
5answers
8k views

Refresh a Div that has a Google ad inside it

I have a div that holds a google ad. My website is mostly AJAX and there is no need for a browser refresh. That means my ads will not refresh either, which isnt ideal, a user staring at one ad all ...
13
votes
5answers
66k views

How would you make two <div>s overlap?

I need two divs to look a bit like this: | | ---| LOGO |------------------------ | |_______________| LINKS | | CONTENT ...
11
votes
3answers
3k views

Using Position Relative/Absolute within a TD?

I have the following code: <td style="position: relative; min-height: 60px; vertical-align: top;"> Contents of table cell, variable height, could be more than 60px; <div ...
11
votes
7answers
48k views

Switch/toggle div (jquery)

I wish to accomplish a simple task (I hope!) I got two div tags and 1 anchor tags, like this: <a href="javascript:void(0);">forgot password?</a> <div id="login-form"></div> ...
11
votes
7answers
22k views

JQuery focus

Let say i have the next markup: <div id="content"> <div id="firstP"><p>First paragraph</p></div> <div id="secondP"><p>Second ...
10
votes
2answers
273 views

my lovely dream : slanted text areas in div

I was wondering if any of you knew if it was possible to make anything looking like this? I know about http://www.infimum.dk/HTML/slantinfo.html but I can't put any text in the slanted areas. Here's ...
10
votes
7answers
4k views

Easier way to create circle div than using an image?

I'm wondering if there's an easier way to create circular divs than what I'm doing now. Currently, I am just making an image for each different size, but it's annoying to do this. Is there anyway ...
10
votes
4answers
1k views

Replace paragraph by <br /> tag in div with contenteditable

How to put <br /> only in div contenteditable while user is pressing ENTER key? I must manage the content of that div in XML after send, but some browsers translate new lines as <p>, some ...
10
votes
5answers
421 views

How to make a div invisible without commenting it out?

Is it possible to make a div invisible without commenting it out? If so, how?
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 ...
10
votes
1answer
14k views

Centering floating divs within another div

I've searched other questions and, while this problem seems similar to a couple of others, nothing I've seen so far seems to address the issue that I'm having. I have a div which contains a number of ...
10
votes
4answers
11k views

Can you overlay a transparent div on an image

I ran accross this example in the image below that is done in Flash and I was wondering if a similar affect of having a transparent box at the bottom of an image with text on it is possible with CSS ...
10
votes
6answers
12k views

How to make a div to fill a remaining horizontal space (a very simple but annoying problem for CSS experts)

I have 2 divs: one in the left side and one in the right side of my page. The one in the left side has fixed width and I want the one of the right side to fill the remaining space. The one on the ...
9
votes
2answers
243 views

WebKit vs Mozilla vertical alignment of font glyphs in box

This test image shows how wildly different Safari positions text inside a box vs Firefox (Safari 5.0.5 and Firefox 5.0.1 for Mac OS X 10.6.7). Notice how the "S" for sans-serif is butted ...
9
votes
3answers
280 views

How to keep text opacity 100 when its parent container is having opacity of 50

I have a list div which have a opacity set to 50 and inside this div I want to display some text with opacity 100, Here's what I mean: <div id="outer"> <div id="inner"> Text ...
9
votes
5answers
3k views

Make DIV fill remainder of page vertically?

I have a Google Maps app that takes up most of the page. However, I need to reserve the top-most strip of space for a menu bar. How can make the map div automatically fill its vertical space? ...
9
votes
5answers
8k views

Is there a way to word-wrap text in a div?

I know IE has a word-wrap style but I'd like to know if there is a cross browser method of doing so to text in a div. Preferably CSS but javascript snippets would work ok too edit: yeah referring ...
9
votes
4answers
7k views

How to make a DIV editable cross-browser?

Do you know how to make a DIV editable with JavaScript (cross-browser) ? Something similar to a rich textarea, but that uses an editable iframe. I need something similar for a DIV. I don't want to ...
9
votes
6answers
4k views

How to vertical align a text?

How to vertically align the text in a floated div? For example: I have a dynamic content with fixed height. if the content is small or big it has to automatically vertically align. Thanks
9
votes
7answers
13k views

How to get Floating DIVs inside fixed-width DIV to continue horizontally?

I have a container DIV with a fixed height and width (275x1000px). In this DIV I want to put multiple floating DIVs each with a width of 300px, and have a horizontal (x-axis) scrollbar appear to ...

1 2 3 4 5 99