Forum: HTML and CSS Jul 20th, 2006 |
| Replies: 2 Views: 1,984 >> How do they make tables with only CSS without using HTML Tables?
Well, if you need a table, you need a table. But you can do typical table layout stuff with CSS pretty easily. Just make good use... |
Forum: HTML and CSS Jun 25th, 2005 |
| Replies: 5 Views: 24,341 The height attribute doesn't exist in any portable HTML specification. You're relying on an IE extension. A workable solution is CSS:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"... |
Forum: HTML and CSS Jun 25th, 2005 |
| Replies: 2 Views: 8,705 As one would expect, the page will look funky if you try to create a fluid layout and then shrink the viewing area so that it's smaller than the collective width of your images. There's really no... |
Forum: HTML and CSS Jun 19th, 2005 |
| Replies: 2 Views: 2,219 1) You're using the margin:auto trick, right? IE can have issues with that, especially older versions. Though the site looks fine for me in IE6. A common hack to fix that is to use text-align:center... |