Forum: HTML and CSS Feb 20th, 2009 |
| Replies: 5 Views: 617 I was going to be a pompous ass and point you to the W3C site... but it's written in Martian so I'll try to humanize it here. =)
If you have a couple of floated elements, say div1, div2, and... |
Forum: HTML and CSS Jan 23rd, 2009 |
| Replies: 5 Views: 656 CSS inheritance works (more or less) in this way:
- checks your main (ie the a:link)
- checks the specific a:hover
- checks inline style
Your external CSS is correct in that it has... |
Forum: HTML and CSS Jan 21st, 2009 |
| Replies: 3 Views: 1,282 This was actually a solution to making divs behave like a table-cell (for those of us who were used to the early-table-like-layouts).
I find them useful for making divs extend all the way down.... |
Forum: HTML and CSS Jan 20th, 2009 |
| Replies: 3 Views: 1,282 I'm not sure if you'll like this, but a display: table-cell; attribute-value in your image's block should do the trick (this also works for backgrounds that won't show because the holding block... |
Forum: HTML and CSS Jan 19th, 2009 |
| Replies: 14 Views: 1,840 Yes, and we're asking for the html code. Not the php. =) |
Forum: HTML and CSS Jan 11th, 2009 |
| Replies: 14 Views: 1,840 Perhaps a 'scrap' of code that can be copy pasted directly (with head, body, etc). Cfa probably wanted to help you, but you should also help us help you (if that makes any sense). After all, unlike... |
Forum: HTML and CSS Jan 10th, 2009 |
| Replies: 14 Views: 1,840 I read a convincing article that justifies using tables for forms... because they are still 'tabular' info. (2 columns: col1 is field title, col2 is input field)
But if you really want to, you can... |
Forum: HTML and CSS Jan 3rd, 2009 |
| Replies: 6 Views: 2,124 Oh ok. sorry about that... I didn't notice the 'coming out' effect. Here's the code for it:
body
{
background: #FFF url('logo.png') no-repeat 150% -125px;
}
I snooped at the code *hungs head... |
Forum: HTML and CSS Jan 2nd, 2009 |
| Replies: 6 Views: 2,124 It's a background image set in the document body.
Here's the CSS code for it:
body
{
background-image: url(image.gif);
background-position: top right;
background-repeat: no-repeat;
} |