Forum Moderators: open

Message Too Old, No Replies

Missing Bulletpoint

Firefox will not display a bulletpoint

         

Anarchist

10:43 pm on May 2, 2005 (gmt 0)

10+ Year Member



Hi,
I am pretty new at CSS and I am trying to use CSS and XML to build a table, one of the pieces of data in my table needs a bulletpoint but when I try to add one it won;t appear, I am using firefox to work.

caption{ display: table-caption;
}

}
table{
display: table;
border: thin solid Black;
table-layout: auto;

}
TR{
display: table-row;padding:5px;

}
TD{
display:table-cell; padding:5px;
border: thin solid Black;

}

#bullet{
display: list-item;
list-style: circle inside;
}
TH{
display:table-cell; padding:5px;
border: thin solid Black;
}

The XML


<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="boro.css" type="text/css"?>
<branches>
<TABLE WIDTH="60%" BORDER="1">
<TR>
<TH>Middlesbrough</TH>
<TH id="bullet" align="right">Linthorpe</TH>
<TD>Sixties</TD>
<TD>Clothing</TD>
<TD>47007</TD>
<TD>Over</TD>
<TD>3.6</TD>
</TR>
</branches>

Cheers