Skip to content

Monday, June 22, 2009

IE8 Explorer Tools problem

| no comments yet
For some reason the following code snippet breaks Internet Explorer 8's Explorer Tools: (colorize)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML>
  <HEAD>
    <TITLE>a    title</TITLE>
    <link rel="stylesheet" type="text/css" href="">
    <STYLE><!--
      BODY {
        BACKGROUND: #deded8; COLOR: black; FONT-STYLE: italic;
      }
    --></STYLE>
  </HEAD>

  <BODY>
    <div>hi</div>

  </BODY>

</HTML>

Sunday, June 21, 2009

Test photo shadows

| no comments yet
Lets get shadows!

New shadow images

| no comments yet
8 images for the 8 borders

Monday, June 01, 2009

Damn you Monday

| no comments yet
Damn you for making visitors leave.

Sunday, May 24, 2009

The perils of using display: table for layout

| 1 comments

When using display:table (with the related table-row and table-cell) to set up columns for a layout, don’t forget to set the vertical-align property. After a while it finally dawned on me why would the padding-top of both columns seemed to be linked to each other and to the margin-top of each column’s first element: say hello to vertical-align: baseline.

Test with html tags

| no comments yet

<p>Testing to see how tags behave</p><div style='border: 1px dotted black'>blah blah I'm surrounded by dots blah blah</div><p>Sent using Rich Formatting</p>