|
Posted by quickcur on February 4, 2005, 10:32 pm
Please log in for more thread options
here is my css
table#bartb {
border : 1px solid;
width : 100%;
}
table#bartb td {
border : 1px solid;
color : #ffffff;
padding : 0px;
margin : 0px;
background : #679999;
text-align : right;
font : bold white xx-small Verdana, Arial, Helvetica, sans-serif;
}
here is my html
<table id=bartb>
<tr>
<td>Empty cell row</td>
<td> </td>
</tr>
</table>
I found that the border of the second cell is not printed. How can I
get it printed?
Thanks,
qq
|
|
Posted by David Dorward on February 5, 2005, 10:53 am
Please log in for more thread options
quickcur@yahoo.com wrote:
> <td>Empty cell row</td>
> <td> </td>
> I found that the border of the second cell is not printed. How can I
> get it printed?
http://w3.org/TR/CSS2/tables.html#propdef-empty-cells
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/> Home is where the ~/.bashrc is
|
|
Posted by Jukka K. Korpela on February 5, 2005, 4:25 pm
Please log in for more thread options quickcur@yahoo.com wrote:
> here is my css
If your problem is essentially a CSS question, as you seem to think
yourself, then this is a wrong group.
You should post the URL, not snippets of code.
> font : bold white xx-small Verdana, Arial, Helvetica,
Working hard to make text illegible to most people, are you not?
> <table id=bartb>
> <tr>
> <td>Empty cell row</td>
> <td> </td>
> </tr>
> </table>
Doesn't look like a tabular structure to me.
> I found that the border of the second cell is not printed. How can I
> get it printed?
David gave you a pointer to the CSS solution.
Here in the HTML group I might mention that you could use
<td> </td> instead of <td> </td> to get the borders.
This is an ugly hack, but it has a semi-official status.
On the other hand, is a character (the no-break space), which thus
has some width and height, so the cell cannot be made arbitrarily small.
There are other workarounds to this, but why don't you explain what you are
really trying to achieve, illustrating this with a nice juicy URL?
--
Yucca, http://www.cs.tut.fi/~jkorpela/ Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html
|
|
Posted by quickcur on February 5, 2005, 9:38 am
Please log in for more thread options You printed out a long anser, none of the lines is useful to me and
other readers.
> If your problem is essentially a CSS question, as you seem to think
> yourself, then this is a wrong group.
Why can not we post css question here? Is not css and html related?
Also, I do not know it is a css problem or a html problem yet.
> You should post the URL, not snippets of code.
>
> > font : bold white xx-small Verdana, Arial, Helvetica,
>
I have hundreds of people visit my site, no of them complain about the
font. I was trying to make my site looks nice. I do not want to
sacrifice the appearance just because 0.1% people can not see the font.
> Working hard to make text illegible to most people, are you not?
>
> > <table id=bartb>
> > <tr>
> > <td>Empty cell row</td>
> > <td> </td>
> > </tr>
> > </table>
>
> Doesn't look like a tabular structure to me.
>
So what's your tabular structure?
I do not like the way you write. If you do not like help people, why do
you visit and post here?
|
|
Posted by Beauregard T. Shagnasty on February 5, 2005, 12:55 pm
Please log in for more thread options quickcur@yahoo.com wrote:
> You printed out a long anser, none of the lines is useful to me and
> other readers.
Au contraire.
>>> font : bold white xx-small Verdana, Arial, Helvetica,
>
> I have hundreds of people visit my site, no of them complain about
> the font.
Most people will simply leave a site they cannot read, go back to the
search engine of choice and pick another one.
> I was trying to make my site looks nice. I do not want to sacrifice
> the appearance just because 0.1% people can not see the font.
I'd say that xx-small (when Verdana is not present) is unreadable to
far more than 0.1%. It would be to me. Do be aware that not everyone
*has* Verdana on their computers. Just because you have Verdana, and
good eyesight, is no reason to set your site's font at anything other
than a size of ... 100%.
http://www.xs4all.nl/~sbpoley/webmatters/verdana.html
> I do not like the way you write. If you do not like help people,
> why do you visit and post here?
It was good advice.
--
-bts
-This space intentionally left blank.
|
| Similar Threads | Posted | | Aligning content in table cell to top of cell | April 26, 2007, 1:56 pm |
| How to eliminate space between table border and table contents? | December 6, 2005, 1:22 am |
| Table border (outside only) | August 6, 2004, 8:16 am |
| Table border & backgroundcolor | May 11, 2005, 4:51 pm |
| Bottom border on after the headings on the table.. | November 19, 2004, 2:23 am |
| Table Cell | November 18, 2007, 7:23 pm |
| table cell size | July 21, 2004, 2:50 am |
| New Crossposted Div in table cell | July 29, 2004, 5:42 am |
| Re: New Crossposted Div in table cell | July 29, 2004, 6:38 pm |
| TABLE, cell width.. help | January 5, 2005, 9:52 am |
|