sterlingcooper
12-21-2010, 02:19 AM
Hi, I know this is very basic but I am clearly missing something... I am trying to wrap text around an image. Instead of uploading the site, I threw this code together, which repeats my problem:
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css" />
<title></title>
</head>
<body>
<div id="column">
<p>Black-top surfaces deteriorate from exposure to air, sun, rain, freezing weather and snow, from the wear of traffic and from the hardening of the asphalt surface. If this dry, weakened condition is not corrected, cracks and breaks soon appear. Moisture seeps in.
<img class="floatLeft" src="doit.png" width="200" height="200" alt="doit">
The base becomes soft. Traffic churns it up. In low temperatures the moisture freezes and expands, causing unsightly, dangerous holes to develop. Expensive time-consuming replacement becomes necessary.</p>
</div>
</body>
</html>
body {
color: red;
}
.floatLeft {
float: left;
margin-left: 125px;
}
#column {
width: 300px;
}
Here's what it looks like when it's not wrapping:
http://img189.imageshack.us/img189/7991/dammitj.jpg (http://img189.imageshack.us/i/dammitj.jpg/)
Thanks very much for any help.
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css" />
<title></title>
</head>
<body>
<div id="column">
<p>Black-top surfaces deteriorate from exposure to air, sun, rain, freezing weather and snow, from the wear of traffic and from the hardening of the asphalt surface. If this dry, weakened condition is not corrected, cracks and breaks soon appear. Moisture seeps in.
<img class="floatLeft" src="doit.png" width="200" height="200" alt="doit">
The base becomes soft. Traffic churns it up. In low temperatures the moisture freezes and expands, causing unsightly, dangerous holes to develop. Expensive time-consuming replacement becomes necessary.</p>
</div>
</body>
</html>
body {
color: red;
}
.floatLeft {
float: left;
margin-left: 125px;
}
#column {
width: 300px;
}
Here's what it looks like when it's not wrapping:
http://img189.imageshack.us/img189/7991/dammitj.jpg (http://img189.imageshack.us/i/dammitj.jpg/)
Thanks very much for any help.