Forum Moderators: open
- Why tables for layout is stupid: problems defined, solutions offered [hotdesign.com]
- Ten ways to speed up the download time of your web pages [webcredible.co.uk]
- Nested Tables: About the (ab)use of tables as layout tools in webpages. [dorward.me.uk]
- Why Tables Are Bad (For Layout) Compared to Semantic HTML + CSS [phrogz.net]
- Why go table free? [workingwith.me.uk]
- Why avoiding tables (for layout) is important [davespicks.com]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>three images</title>
<style type="text/css">
#image-container {
width:300px;
margin:auto;
font-family:verdana,helvetica,sans serif;
font-size:11px;
color:#000;
}
#image-container span {
display:block;
margin-bottom:18px;
text-align:center;
}
#image-container img {
float:left;
border:0;
}
#image-1 {
width:171px;
height:61px;
}
#image-2 {
width:129px;
height:61px;
}
#image-3 {
width:300px;
height:149px;
}
</style>
</head>
<body>
<div id="image-container">
<span>Snippet here</span>
<a href="http://www.google.com/"><img id="image-1" src="images/gif1.gif" alt="Logo"></a>
<img id="image-2" src="images/gif2.gif" alt="">
<img id="image-3" src="images/gif3.gif" alt="">
</div>
</body>
</html>