Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
8answers
44k views

IE7 and the CSS table-cell property

So I just love it when my application is working great in Firefox, but then I open it in IE and... Nope, please try again. The issue I'm having is that I'm setting a CSS display property to either ...
3
votes
1answer
136 views

How is a CSS “display: table-column” supposed to work?

Given the following HTML and CSS, I see absolutely nothing in my browser (Chrome and IE latest at time of writing). Everything collapses down to 0x0 px. Why? <!DOCTYPE html> <html> ...
3
votes
4answers
821 views

CSS table, table-cell height issue in Firefox

To start with, I have examples and code here (a site I keep to play with stuff). This is the actual link just in case: http://www.williamrosmus.com/examples/calendar1_wf.html This is an issue I am ...
3
votes
3answers
2k views

Why do Firefox and Opera ignore max-width inside of display: table-cell?

The following code displays correctly in Chrome or IE (the image is 200px wide). In Firefox and Opera the max-width style is ignored completely. Why does this happen and is there a good work around? ...
3
votes
3answers
2k views

JQuery - grab the td value next to radio button

I have the following dilemma: My HTML is as such (this exists within a PL/SQL app.): <table id="search_result_table"> <tr> <input type=radio name="pv_select" ...
3
votes
2answers
921 views

min-width and max-wdith are ignored when element has display:table-cell

I'm trying to do simple fluid layout using CSS tables techniqe, but there is one big flow that I have found in it: min-width and max-width are ignored on elements with table-cell display. Do you ...
2
votes
1answer
58 views

Layout, CSS table, table-cell and an ugly gap on aside column

I'm having issues with creating equal height columns on the basic Dreamweaver HTML5 3 col fixed layout. I was using jQuery equal height columns to make the column's bg colour be equal on all pages, ...
2
votes
2answers
87 views

Vertically and horizontally centering a variable-size div

I have a div whose width and height are some fixed percentages of the browser-window, say 70% and 80%, with certain min-width and min-height. I want this div to be displayed both vertically as well as ...
2
votes
3answers
135 views

How to display the rows (<tr>) of a table on a single line(Internet Explorer 6,7)?

I want to display the rows of a table on a single line. This is a problem in Internet Explorer 6 and 7 because setting the float attribute to left and the display to block won't do. And changing ...
2
votes
2answers
413 views

Table element in CSS table-cell offsets other table-cell contents

The following table element in the "center" div causes the contents in the "left" divs to be offset by several pixels from the top (8 in my browser). Adding some text prior to the table removes this ...
1
vote
3answers
24 views

Set margin between two tabel-cell div

I have two buttons, and because I need them display in one line and vertical align text in it, I use display: table-cell. But the two div stick together. Margin does not work here. Is there a way to ...
1
vote
2answers
60 views

How to wrap text in table cell at hyphen?

I found the text-wrap and overflow-wrap CSS 3 properties, but they don't seem to do anything. http://www.w3schools.com/cssref/css3_pr_text-wrap.asp How to wrap text at hyphens within a table cell? ...
1
vote
0answers
43 views

Keeping table cell from resizing in Internet Explorer

I have a table (I use it for my main layout) with a table cell that is only 20px high. The next cell is a rowspan of 2, that contains my main content. In firefox it isnt a problem at all. It stays at ...
1
vote
1answer
135 views

No border-spacing before first item and after last item

I have a fake table. I use border-spacing property to create a space between them. But this also creates spacing before first cell and after the last cell. I would like it to create a space only ...
1
vote
1answer
149 views

Making DIVs behave like tables

Is it possible to make e.g. a 2x2 grid with divs that behaves like a table when comes to resizing to fit the contents? Like this +-----------+ | 1 | 2 | ------------- | 3 | 4 | +-----------+ ...
0
votes
3answers
30 views

CSS - Vertical align table-cell don't work with position absolute

http://jsfiddle.net/fQv97/ HTML <div class="table-cell"> My text, should be align middle </div> CSS .table-cell { height: 200px; width: 200px; vertical-align: middle; ...
0
votes
0answers
25 views

Items not appearing side-by-side even with table-cell display style

I am using Expression Web 4 to edit HTML (and IE9 to display it), and when I have some divs that I try to arrange in a table using the display: table and display: table-cell styles, the items appear ...
0
votes
1answer
64 views

jquery button and firefox display: table-cell weirdness

This looks fine on IE9 but with FF the icon is way off to the right and below. It is a reduced snippet of code that highlights the problem. I need to use table-cell for this but cannot get FF to ...
0
votes
1answer
44 views

Strange behavior when setting “padding-top” for the content of a “table-cell” div

Can someone explain this behavior to me? take this code: <div style="position:relative; width:960px; margin-left:auto; margin-right:auto; "> <div style="background-color:pink;"> ...
0
votes
2answers
34 views

problem with UITableViewCell when customizing with an extended class

I have 2 classes for a UITableViewCell that show different data but they use the same table. I'm trying to populate the table in 2 steps by using a bool var, but it seems that I get an exception ...
0
votes
1answer
156 views

3 columns, middle one with flexible width

I'd like to have a layout that consist of three adjacent divs. Side divs have static width (it may change via javascript) and center div fills a remaining area. When the first div's size changes it ...
0
votes
2answers
77 views

Getting your nested div to behave like table cell

I know about display: table/table-row/table-cell styles. What if I want to apply table-cell style to deeper element in DOM structure and get the same effect. Please, look at r2c1 cell. As you see it ...
0
votes
2answers
51 views

List problem - content aligned vertically but list aligned horizontally?

I have a list to which I've applied diplay:table-cell and vertical-align:middle styles to display the list items' contents centered vertically. Trouble is, the list itself then displays horizontally! ...
0
votes
0answers
39 views

Generated Content with :Before or :After on Table Cell (TD)

Though I had found the workaround for my problem, I still would like to clarify some things. Here's what I wanted to achieve: a table with an image as separator between rows using generated content ...
0
votes
1answer
469 views

Center a display:table-row UL/LI list

I have this php page that calls a template: if(!isset($_GET['step']) || $_GET['step'] == "" || $_GET['step'] == 1) { include("templates/install_db.html"); } elseif(isset($_GET['step']) && ...
0
votes
1answer
202 views

For IE8 - Trying to set cell spacing/padding to 0px in combination with CSS display's table_cell

I tried to vertically align some content into div box. to achieve this I have found some CSS that works perfect. Except for you know who it doen't: IE8. When using the display attribute with the value ...
0
votes
1answer
425 views

Firefox display:table-cell bug, or how does table-cell work?

I have this code: <style> .main-table {width: 80%;} .box, .placeholder-box {display:table-cell; width: 26.4%;} </style> </head> <body> <table ...
0
votes
4answers
1k views

Lock table cells to their default size regardless of content

If I have <table> <tr> <td></td> <td></td> </tr> <tr> <td></td> <td></td> ...
0
votes
2answers
677 views

Display: Table-cell not setting height constantly xbrowser (ie8 table bug)

So I'm setting up a page with a bunch of dynamic content. I'm organizing this within a table. There are three rows, each with a single cell. The top part works as a fixed header, since I've set the ...
0
votes
1answer
550 views

display: table-cell; in ie6/7 workaround

I'm trying to build a single row css table with multiple cells that has text that is vertically centered inside the cells. Basically the table behaviour I am trying to mimic with css is this: ...
0
votes
1answer
424 views

css table cell ie8 issue

Am sure this one is basic :) I have a webpage with the following css .gameboard-table { border: solid 3px black; padding: 0px; border-collapse: collapse; } .gameboard-table tr { ...
0
votes
1answer
208 views

Vertical alignment (for IE!)

HTML: <div class="product"> <a href="#" class="thumb"><img src="img/thumb_md.png" alt="" /></a> </div> CSS: .product .thumb { position: relative; display: ...
-2
votes
1answer
155 views

will display: table-cell be depricated in future CSS? [closed]

Does anyone know for sure if CSS display:table-cell will be deprecated in the future? I need this advice for a project I am currently working on. If there is good evidence that it will be deprecated ...