From: Haris Bogdanovi� on 22 Jul 2010 14:17 Hi. I have a table 10*10 but there is no border around table cells. The border appears when I put something in a cell. How to make a cell border visible when cell is empty ? Thanks
From: MG on 22 Jul 2010 14:36 "Haris Bogdanovi�" <fbogdanovic(a)xnet.hr> wrote in message news:i2a20p$v34$1(a)gregory.bnet.hr... > Hi. > > I have a table 10*10 but there is no border around table cells. > The border appears when I put something in a cell. > How to make a cell border visible when cell is empty ? > > Thanks Put in the cell MG
From: Evertjan. on 22 Jul 2010 15:09 MG wrote on 22 jul 2010 in comp.lang.javascript: > "Haris Bogdanovi�" <fbogdanovic(a)xnet.hr> wrote in message > news:i2a20p$v34$1(a)gregory.bnet.hr... >> Hi. >> >> I have a table 10*10 but there is no border around table cells. >> The border appears when I put something in a cell. >> How to make a cell border visible when cell is empty ? >> >> Thanks > > Put in the cell In this NG you should give a Javascript solution: var tbls = document.getElementsByTagName("table"); for (i=0;i<tbls.length;i++) for (j=0;j<tbls[i].rows.length;j++) for (k=0;k<tbls[i].rows[j].cells.length;k++) tbls[i].rows[j].cells[k].innerHTML += ' '; -- Evertjan. The Netherlands. (Please change the x'es to dots in my emailaddress)
From: Denis McMahon on 22 Jul 2010 18:13 On 22/07/10 19:17, Haris Bogdanoviæ wrote: > I have a table 10*10 but there is no border around table cells. > The border appears when I put something in a cell. > How to make a cell border visible when cell is empty ? 1) Ask in an html authoring group. 2) Put something in the cell. 3) The html authoring group might suggest what to put in the cell (I know what I'd use, but if I suggest it here I'll probably get shot down in flames). Rgds Denis McMahon
From: RobG on 22 Jul 2010 19:14
On Jul 23, 8:13 am, Denis McMahon <denis.m.f.mcma...(a)googlemail.co.uk> wrote: > On 22/07/10 19:17, Haris Bogdanoviæ wrote: > > > I have a table 10*10 but there is no border around table cells. > > The border appears when I put something in a cell. > > How to make a cell border visible when cell is empty ? > > 1) Ask in an html authoring group. Yes, use: comp.infosystems.www.authoring.html <URL: http://groups.google.com/group/comp.infosystems.www.authoring.html?lnk= > Fully specify the HTML and CSS (if any) that is being used for the table. Over there they like links to examples rather than posted code, but if you keep it short and concise they won't mind. -- Rob |