Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
618 views

Why is styling table columns not allowed?

W3 specifies that only four CSS rules are allowed for table columns (with the <col> element) - border, background, width and visibility. Does anyone know the reasons behind this decision? If ...
7
votes
6answers
986 views

Is html <COL align> deprecated?

i'm looking at the W3Schools demo of using the <COL> element to align columns: <table width="100%" border="1"> <col align="left" /> <col align="left" /> <col ...
6
votes
7answers
2k views

Table Column Formatting

I'm trying to format a column in a table using a <col> element. I can set background-color, width, etc., but can't set the font-weight. Why doesn't it work? <table> <col ...
5
votes
2answers
2k views

cols, colgroups and css :hover psuedoclass

I'm trying to create a table to display an individual's BMI. As part of this, I'd like, on :hover, for the <tr> and <col> (or <colgroup>) to be highlighted also, in order for the ...
2
votes
2answers
142 views

How can I get the col's id of a td (not column number of a td)?

In this example: <table border="1"> <col id="col0" style="background-color: #FFFF00"/> <col id="col1" style="background-color: #FF0000"/> <tr><td ...
2
votes
1answer
150 views

No text wrapping in HTML table on SharePoint

I have a table on SharePoint that I have constrained to a certain size. For this I have used table-layout:fixed; in my CSS. I then have tags in my html to size my columns as I would like. The ...
2
votes
2answers
215 views

span attribute on colgroup and col

Are these codes logically equivalent? <colgroup span="7"> </colgroup> And <col span="7" /> And <colgroup> <col /> <col /> <col /> <col /> <col ...
2
votes
2answers
259 views

Add mouse event to colgroup or col

Is it possible to add jQuery mouse events on cols or colgroups. We have tried to do so, but it didn't seem to work. On the other hand those cols have a real width and height. Is there a way to make ...
2
votes
1answer
303 views

<col class=“slick”> does not apply class to the columns of a table

My understanding of col is that it may be used to indicate a class for all the elements in a table's column. This doesn't seem to be working for me though. I can apply the class to individual td's, ...
0
votes
1answer
143 views

Table Zebra, styling TR and COL in IE9

I was going to post nice bitmaps of desired and received bahavior but I'm not allowed to post images since I am a new user, so view the following link in Google Chrome, then IE9 to see what I am ...
0
votes
2answers
67 views

How to update one col pr. row with jquery

Hello :) How can i update only one col pr. row with jquery. As you can see on this picture, i only want to update the col to the right, and not the three other cols. Anyone knows how to do that?
0
votes
3answers
374 views

How to find out SqlCe Column's length

I created a table using SqlCe, like this: SqlCeCommand createTableCmd = new SqlCeCommand(); createTableCmd.CommandText = "Create table docEntry (id nvarchar (70) not null PRIMARY KEY, " ...
0
votes
3answers
35 views

How to use SQL to output latest info with multiple col

I have a "weather" table below with 3 cols: City Temperature Date New York 22 C 10/10/2005 Seattle 21 C 10/10/2005 New York 18 C 10/09/2005 Seattle 20 C 10/09/2005 Washington 17 ...
0
votes
3answers
102 views

Div height fix for % based columns

I have a webpage i've started at following address: http://digitalgenesis.com.au/my%20sites/Digital%20Genesis/ Basically im after a 2 column layout with 2 fluid containers that display background ...