Alazanto

Archive for

Tasman & Absolutely Positioned Child Elements

We now have a wonderful workaround for screen-readers that are unable to read elements with a display declaration of none.

For more information about this method, See the “Screenreader Visibility” article at the CSSD Wiki.
The Code Behind this Method

li {
position: absolute;
top: 0px;
left: -999px;
/* and for those HR’s you want to hide: */
width: 400px;
}

Unfortunately, however, the following […]

Granted Services

I just completed the information page for my new grants program. I plan on granting a needy organization a website worth up to $3,500. I feel this will be a way to give back to society the opportunities I have been afforded in my lifetime.

You can visit the site by following the link […]

Linked List Items as Block Elements

With a little help, I managed to work around a common rendering issue with linked list items and Internet Explorer 5 and 6 for windows. I decided to document my findings with a short tutorial on styling unordered lists (ul).
Special thanks go to Michael Ryznar for his assistance.

The Rendering Bug
Without the necessary workaround, Internet […]