Forum: HTML and CSS Jan 21st, 2008 |
| Replies: 2 Views: 6,217 Very bad ;-)
Some browsers may actually listen to you and not bother to expand it, so I would suggest you simply set the size of your input element instead...
<INPUT TYPE="file" NAME="photo"... |
Forum: HTML and CSS Apr 8th, 2005 |
| Replies: 6 Views: 6,325 It appears that for a div, IE in standards mode (with a strict or transitional doctype) adds padding and margins to the width.
In quirks mode, without a doctype or with an incomplete doctype, it... |
Forum: HTML and CSS Apr 4th, 2005 |
| Replies: 17 Views: 4,933 Is this something like what you want?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Page title</title>
<style... |
Forum: HTML and CSS Nov 23rd, 2004 |
| Replies: 11 Views: 5,170 it validates in xhtml 1.0 strict.
Also http://www.htmlhelp.com/reference/html40/tables/tbody.html
It refers to needing 'one or more' tbody elements in a table.
So I guess you can.
edit: see... |
Forum: HTML and CSS Jul 31st, 2004 |
| Replies: 24 Views: 6,897 <div id="homepage>
<div>
Content
</div>
</div>
#homepage {
margin-left: 100px;
} |
Forum: HTML and CSS Jul 19th, 2004 |
| Replies: 10 Views: 33,602 Yes that's right.
Basically we are moving the control point of the box to the center by telling it to use margins that are negative and half the width and height of the box. This means that when we... |