Archive for September, 2005
Thursday, September 22nd, 2005
Web Essentials 05 - Here I Come!
I’m helping out with the WE05 conference this year, and I am so excited! My flight is booked, crash space with friends is arranged (isn’t knowing people from the internet for years the coolest thing?) and all I have to do is pack, and explain to the children at the last minute where I will […]
No Comments » - Posted in Blog by Lea
Saturday, September 3rd, 2005
Width: auto does weird things to image
Writing up a bug
I wrote some pages this week which included a list of items with a left floated image per list item. So I had markup like this:
<ul id=”thisList”>
<li><h2>Heading for first item</h2>
<div><img src=”i/image1.jpg” width=”106″ height=”106″ alt=”[second image]”><h3>Subheading for first item</h3>
<p>A paragraph of description</p>
<p>A second paragraph.</p>
</div>
</li>
<li>
<h2>Heading for second item</h2>
<div><img src=”i/image1.jpg” width=”113″ height=”98″ alt=”[this image]”>
<h3>sub heading</h3>
<p>A […]