2006-04-13

Jasper's Google Reader subscribe user script improved

I've implemented the improvement suggested by Chris Wetherell in Jasper's Google Reader subscribe user script (original post) for Greasemonkey. Feed URL's containing query strings are now handled correctly. Thanks, Chris!

2006-04-05

CSS styling definition lists without floating or absolute positioning

I've written before on styling definition lists (which I use to create semantic HTML forms). I described two CSS options to style the definition list:

  1. Positioning the definition title absolutely and the data relatively.
  2. Float the definition title in the definition data left margin.

The absolute option gets you in trouble when you for example want to dynamically change your page. The float option gets you in trouble when you want to support Internet Explorer 5 and 6. You will need to fix the 3px pixel gap and need to be lucky not to be running in to other problems.

Last week I've had it with these options and thought up a better way to style definition lists. Just use negative top margin on the definition data:

form dt {
  width: 120px;
  text-align: right;
}

form dd {
  margin: -18px 0 2px 0;
  padding-left: 128px;
  min-height: 25px;
}

* html form dd { height: 25px; }

You can use the * html hack here because Internet Explorer 7 will ignore it and will support min-height.