Skip to main content

All Questions

0 votes
2 answers
706 views

Prevent table header from scrolling vertically (to work in IE 11)

I'm stuck using IE 11 as a rendering engine in my Windows app. I know that there are quite a lot of examples how to prevent a table header from scrolling vertically, but I can't seem to make them work ...
c00000fd's user avatar
  • 21.8k
1 vote
2 answers
1k views

Why is a row, in a table with border radius, overlapping the rounded corners in IE11?

I created a table with border-radius. But when checking this in IE11 it shows as if the borders aren't rounded. If I up the value of the border and border-radius, it shows clearly that the row is ...
Sarleet's user avatar
  • 13
0 votes
1 answer
886 views

Width not wrapping in IE11

In case if IE11 width is not proper. In case of Chrome the width is proper and content is wrapped. There is no scroll bar in case of Chrome, but in IE11 the content did not wrap. Expected: there ...
Vishal Patil's user avatar
0 votes
1 answer
908 views

IE11 flexbox in table - text not wrapping

This issue is driving me nuts. I've tried to implement every answer I've found on Google and on SO. I just want the text under the images to wrap correctly in IE11 like every other browser does in ...
dmikester1's user avatar
  • 1,540
0 votes
1 answer
69 views

Content inside of scrollable div, causing a page scrollbar in IE

I am trying to incorporate sticky headers into my company's internal data table component. The best way I've gotten it to work (with Chrome), while not screwing up any other features is generating ...
Jacob Petersen's user avatar
1 vote
0 answers
337 views

IE11: Extend table row beyond table on hover

I have an HTML table inside a container. On hover, I want to highlight the row, not only inside the table, but extending outside to the edges of the container. This is my first attempt: body { ...
larlon's user avatar
  • 577
0 votes
3 answers
590 views

Why is hover working in IE11, but not in Chrome?

I have got a problem using the hover element in my css file. It is working in IE11, but not in Chrome. This is the code that i am using for hover: .datagrid table thead th:hover {background-color:#...
Fynn's user avatar
  • 214
0 votes
0 answers
2k views

overflow:auto inside a table in IE11

I'm creating an HTML table (the use of <table> is required) with a fixed-height <td> element, and am trying to add a scrollable div (overflow:auto) and a height of 100%. This works fine in ...
packerfan3611's user avatar
1 vote
1 answer
3k views

Rowspan and colspan problems in IE

So, I need to create table with complicated system of colspans and rowspans. You can look at that here This is html: <table cellspacing="0" cellpadding="0" style="table-layout: fixed; width: ...
lenden's user avatar
  • 830
1 vote
1 answer
5k views

IE11 Table Display Issue - Line in table head

I've created a table, which renders correctly in all browsers I've tested, including IE 8,9,10 etc. However, in IE11 the last header column seems to have a border with the column before, creating a ...
Protagonist's user avatar
3 votes
1 answer
2k views

A cross-browser way to grow all table cells in a row to match the content of the largest one?

I have an HTML table I'm using to display a timetable. The layout features I want to have in the end are: If possible, have each table cell be the same size to make the table look regular. (Manually ...
millimoose's user avatar
  • 39.7k