My Newest Toy
March 31, 2003
A little while back I mentioned a new segment I planned to create called Media Intake. Well, it's ready enough for you to see it, if you'd like. Here it is. Essentially, I will be able to keep track of every bit of media I take in. Every book I read, every record I hear and every film I see. Right now, it is just a basic list of everything I have entered. There is more information about each event that is not listed yet, but it's coming.
So, in Zeldman-esque style, I will let you watch me as I create. Along those lines, I have a question for CSS gurus. When I'm using a table (it's ok, it's for data. you're supposed to use them), how can I create a border in the cell? Also, how do I get rid of cellspacing and cellpadding with CSS? I can't figure these things out.
Finally, could those people with windows machines check out the page and make sure it doesn't look funny. Thanks.
Advertisement
Comments (3 comments so far)
Comment #2:
oh, and here is a screen shot of media intake in IE 6 PC:
http://veiledinterest.com/capnIntakeScreen.gif
Comment #3:
padding and margin take the place of cellpadding and cellspacing, respectively
so -table cellpadding=0 cellspacing=0- is the same as having yer stylesheet say td { padding: 0; margin: 0 }
Trackback
Trackback Link: http://www.capndesign.com/cgi-bin/mt/mt-tb.cgi/20
Post a comment
Sorry, Comments are closed. You may still send a trackback link though.
home
about
photo
mini reviews
archives
netflix queue
lists (soon)
calendar (soon)
rss feed
This entry is titled "My Newest Toy" and was posted on March 31, 2003 at 2:15 am. It was posted in the category "Site News."
There have been 3 Comments and .
Last 5 Entries Commented On:
Eric Asimov and the NYT Says Sprecher Makes the Best Root Beer (1)
Guitar Hero Ad: You Just Blew My Mind (1)
Why Those Chicken Wings Were Good (1)
Keith Olbermann Evicerates Bush in a Special Comment Piece (1)
What's the Problem? (1)
Last 5 Months:
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
Categories:
Art
Culture\Politics\Law
Design
Far East 2005
Food
Music\TV\Film\Media
My Life
New York
Quick Post
Site News
Sports
Technology\Web
Tidbits
Top Ten
Video Games
The content on this website is licensed under a Creative Commons license. So, cc 1999-2008. The code is copyright me. Enjoy.

Comment #1:
Let me try and help: to create a cell border in CSS do the following:
'.border {border: 1px solid #000;}'
and then assign a class in the cell:
''
Thats all there is to it! For cellspacing and padding, you can use padding: '0px;' in CSS but I'm not sure about spacing. You might try margin or border-spacing to achieve that affect.
Posted by tjk on April 02, 2003 at 5:01PM