truecalling1234
24 Nov 2010, 05:15 PM
Hey everyone,
First post here. Can the layout below be replicated with HTML/CSS? I've been trying to use <ul> and <li> but am struggling.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" height="400px" border="0" style="border:1px solid black;">
<tr>
<td valign="bottom"><img src="screenshot.png" width="300" height="225" /></td>
<td valign="bottom"><img src="screenshot.png" width="300" height="225" /></td>
<td valign="bottom"><img src="screenshot.png" width="300" height="225" /></td>
<td valign="bottom"><img src="screenshot.png" width="300" height="225" /></td>
</tr>
<tr>
<td valign="top">text</td>
<td valign="top">text<br />line two</td>
<td valign="top">text</td>
<td valign="top">text<br />line two<br />line three</td>
</tr>
</table>
</body>
</html>
First post here. Can the layout below be replicated with HTML/CSS? I've been trying to use <ul> and <li> but am struggling.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" height="400px" border="0" style="border:1px solid black;">
<tr>
<td valign="bottom"><img src="screenshot.png" width="300" height="225" /></td>
<td valign="bottom"><img src="screenshot.png" width="300" height="225" /></td>
<td valign="bottom"><img src="screenshot.png" width="300" height="225" /></td>
<td valign="bottom"><img src="screenshot.png" width="300" height="225" /></td>
</tr>
<tr>
<td valign="top">text</td>
<td valign="top">text<br />line two</td>
<td valign="top">text</td>
<td valign="top">text<br />line two<br />line three</td>
</tr>
</table>
</body>
</html>